diff options
author | Z572 <[email protected]> | 2022-07-24 19:34:31 +0800 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2022-08-01 14:08:08 +0200 |
commit | dee64d4776e6d97f10b71d3484dff5f350af63c3 (patch) | |
tree | d3dc6c75ddf54403bf178e094da53742f4edc65b /gnu | |
parent | 49000523d22e31334525fedb9a8913dd8f2e21a0 (diff) |
gnu: guile-lens: Fix build.
* gnu/packages/guile-xyz.scm (guile-lens)
[phases]{run-hall}: replace "dist" to "build-system".
Signed-off-by: Ludovic Courtès <[email protected]>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 0717acf83b..dd28e38a20 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -43,6 +43,7 @@ ;;; Copyright © 2022 Zhu Zihao <[email protected]> ;;; Copyright © 2022 Antero Mejr <[email protected]> ;;; Copyright © 2022 Taiju HIGASHI <[email protected]> +;;; Copyright © 2022 Zheng Junjie <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -3944,7 +3945,7 @@ as signed sessions, multipart message support, etc.") (add-after 'unpack 'run-hall (lambda _ (setenv "HOME" "/tmp") ; for ~/.hall - (invoke "hall" "dist" "-x")))))) + (invoke "hall" "build-system" "-x")))))) (native-inputs (list autoconf automake |