summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2025-09-03 14:53:38 +0100
committerChristopher Baines <mail@cbaines.net>2025-09-03 14:55:28 +0100
commit2f6319cf94713ec2377ce309c2fc87ce6d5e09aa (patch)
tree4db9667d116a5bb44cd078651993e31a5db3072c /gnu
parent077f3a5e4b42c0cc705aaeda2e00c52010c0469d (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')
-rw-r--r--gnu/packages/suckless.scm12
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")