me
/
guix
Archived
1
0
Fork 0

gnu: nix: Use G-expression.

* gnu/packages/package-management.scm (nix)[arguments]: Convert to G-expression.

Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
Zhu Zihao 2022-01-12 00:42:32 +08:00 committed by Oleg Pykhalov
parent 8ed6a8884c
commit fb81687228
No known key found for this signature in database
GPG Key ID: 167F8EA5001AFA9C
1 changed files with 13 additions and 13 deletions

View File

@ -676,19 +676,19 @@ GTK icon cache for instance.")))
(search-patches "nix-dont-build-html-doc.diff"))))
(build-system gnu-build-system)
(arguments
`(#:configure-flags '("--sysconfdir=/etc" "--enable-gc")
#:phases
(modify-phases %standard-phases
(replace 'install
;; Don't try & fail to create subdirectories in /etc, but keep them
;; in the output as examples.
(lambda* (#:key (make-flags '()) outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(etc (string-append out "/etc")))
(apply invoke "make" "install"
(string-append "sysconfdir=" etc)
(string-append "profiledir=" etc "/profile.d")
make-flags)))))))
(list
#:configure-flags #~(list "--sysconfdir=/etc" "--enable-gc")
#:phases
#~(modify-phases %standard-phases
(replace 'install
;; Don't try & fail to create subdirectories in /etc, but keep them
;; in the output as examples.
(lambda* (#:key (make-flags '()) outputs #:allow-other-keys)
(let ((etc (string-append #$output "/etc")))
(apply invoke "make" "install"
(string-append "sysconfdir=" etc)
(string-append "profiledir=" etc "/profile.d")
make-flags)))))))
(native-inputs
(list autoconf
autoconf-archive