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
|
||||
"02cgzh97cgxh9iyf7gkn5ikdc0sfzqfjj6al0hikdf9rbwcscqwd"))))
|
||||
(arguments
|
||||
'(#:configure-flags '("--localstatedir=/var")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'bootstrap
|
||||
;; Work around missing interpreter shebang.
|
||||
(lambda _
|
||||
(invoke "bash" "bootstrap.sh"))))))
|
||||
(list
|
||||
#:configure-flags
|
||||
#~(list "--localstatedir=/var")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'bootstrap
|
||||
;; Work around missing interpreter shebang.
|
||||
(lambda _
|
||||
(invoke "bash" "bootstrap.sh"))))))
|
||||
(native-inputs
|
||||
(list autoconf automake libtool pkg-config))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue