gnu: lxcfs: Use G-expressions.

* gnu/packages/virtualization.scm (lxcfs)[arguments]:
Rewrite as G-expressions.
This commit is contained in:
Tobias Geerinckx-Rice 2023-07-23 02:00:00 +02:00
parent 856f91d9b3
commit 6bf4939ebf
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -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