mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 08:36:32 +01:00
gnu: lxcfs: Use G-expressions.
* gnu/packages/virtualization.scm (lxcfs)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
856f91d9b3
commit
6bf4939ebf
1 changed files with 9 additions and 7 deletions
|
@ -1321,13 +1321,15 @@ (define-public lxcfs
|
||||||
(base32
|
(base32
|
||||||
"02cgzh97cgxh9iyf7gkn5ikdc0sfzqfjj6al0hikdf9rbwcscqwd"))))
|
"02cgzh97cgxh9iyf7gkn5ikdc0sfzqfjj6al0hikdf9rbwcscqwd"))))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags '("--localstatedir=/var")
|
(list
|
||||||
#:phases
|
#:configure-flags
|
||||||
(modify-phases %standard-phases
|
#~(list "--localstatedir=/var")
|
||||||
(replace 'bootstrap
|
#:phases
|
||||||
;; Work around missing interpreter shebang.
|
#~(modify-phases %standard-phases
|
||||||
(lambda _
|
(replace 'bootstrap
|
||||||
(invoke "bash" "bootstrap.sh"))))))
|
;; Work around missing interpreter shebang.
|
||||||
|
(lambda _
|
||||||
|
(invoke "bash" "bootstrap.sh"))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list autoconf automake libtool pkg-config))
|
(list autoconf automake libtool pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Reference in a new issue