mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: zutils: Use G-expressions.
* gnu/packages/compression.scm (zutils)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
46713e5220
commit
05b8222096
1 changed files with 10 additions and 10 deletions
|
@ -2421,16 +2421,16 @@ (define-public zutils
|
||||||
(base32 "1vl8mhvsl0zlh34hwhc05vj33a2xfr0w7i978hcwaw8wn1w59bkq"))))
|
(base32 "1vl8mhvsl0zlh34hwhc05vj33a2xfr0w7i978hcwaw8wn1w59bkq"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
(list
|
||||||
(list "--sysconfdir=/etc")
|
#:configure-flags
|
||||||
#:phases
|
#~(list "--sysconfdir=/etc")
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
(replace 'install
|
#~(modify-phases %standard-phases
|
||||||
(lambda* (#:key make-flags outputs #:allow-other-keys)
|
(replace 'install
|
||||||
(apply invoke "make" "install"
|
(lambda* (#:key make-flags #:allow-other-keys)
|
||||||
(string-append "sysconfdir=" (assoc-ref outputs "out")
|
(apply invoke "make" "install"
|
||||||
"/etc")
|
(string-append "sysconfdir=" #$output "/etc")
|
||||||
make-flags))))))
|
make-flags))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
;; Needed to extract the source tarball and run the test suite.
|
;; Needed to extract the source tarball and run the test suite.
|
||||||
(list lzip))
|
(list lzip))
|
||||||
|
|
Loading…
Reference in a new issue