diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2025-05-23 19:15:19 +0100 |
---|---|---|
committer | Arun Isaac <arunisaac@systemreboot.net> | 2025-05-23 19:16:50 +0100 |
commit | 3e676b49b9b702051257d5afbfeb66c056a57088 (patch) | |
tree | 79d9831eee73a3ddd702085f701676186f8ebbf4 | |
parent | 001ceac870bd116bf963ace23b082733d58e90ec (diff) |
gnu: guile-lens: Patch hall.scm.
* gnu/packages/guile-xyz.scm (guile-lens)[arguments]: Patch hall.scm before
invoking hall in run-hall phase.
-rw-r--r-- | gnu/packages/guile-xyz.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 76150122f9..bd7ad3f515 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -5651,6 +5651,11 @@ not provide a way to change the headers on its own.") (add-after 'unpack 'run-hall (lambda _ (setenv "HOME" "/tmp") ; for ~/.hall + ;; Patch hall.scm. + (substitute* "hall.scm" + (("\\(copyright '\\(2018\\)\\)") + "(email \"alex@pompo.co\") (copyright (2018))")) + ;; Invoke hall. (invoke "hall" "build-system" "-x")))))) (native-inputs (list autoconf |