diff options
| author | Christopher Baines <mail@cbaines.net> | 2025-09-03 14:53:38 +0100 |
|---|---|---|
| committer | Christopher Baines <mail@cbaines.net> | 2025-09-03 14:55:28 +0100 |
| commit | 2f6319cf94713ec2377ce309c2fc87ce6d5e09aa (patch) | |
| tree | 4db9667d116a5bb44cd078651993e31a5db3072c /gnu/packages | |
| parent | 077f3a5e4b42c0cc705aaeda2e00c52010c0469d (diff) | |
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
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/suckless.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm index f2f667ff5d2..0e6af1e8c5d 100644 --- a/gnu/packages/suckless.scm +++ b/gnu/packages/suckless.scm @@ -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") |
