~ruther/guix-local

2f6319cf94713ec2377ce309c2fc87ce6d5e09aa — Christopher Baines 8 months ago 077f3a5
gnu: lukesmithxyz-st: Fix broken builder script.

I believe broken in e03f2316e45e4aea7501ff29aa174222bdd2e93c with the switch
to a G-exp for the st package phases.

* gnu/packages/suckless.scm (lukesmithxyz-st)[arguments]: Change phases to a
gexp.

Change-Id: I0cb47d07dd40e9d15ffebee089ccac7750f28bad
1 files changed, 6 insertions(+), 6 deletions(-)

M gnu/packages/suckless.scm
M gnu/packages/suckless.scm => gnu/packages/suckless.scm +6 -6
@@ 458,12 458,12 @@ drawing.")
      (arguments
       (substitute-keyword-arguments (package-arguments st)
         ((#:phases phases)
          `(modify-phases ,phases
             (add-after 'unpack 'remove-calls-to-git
               (lambda _
                 (substitute* "Makefile"
                   (("git submodule init") "")
                   (("git submodule update") ""))))))))
          #~(modify-phases #$phases
              (add-after 'unpack 'remove-calls-to-git
                (lambda _
                  (substitute* "Makefile"
                    (("git submodule init") "")
                    (("git submodule update") ""))))))))
      (inputs (modify-inputs (package-inputs st)
                (prepend libxext harfbuzz)))
      (home-page "https://github.com/LukeSmithxyz/st")