gnu: lukesmithxyz-st: Fix broken builder script.

I believe broken in e03f2316e4 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
This commit is contained in:
Christopher Baines 2025-09-03 14:53:38 +01:00
parent 077f3a5e4b
commit 2f6319cf94
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -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")