gnu: pam-mount: Use G-expressions.
* gnu/packages/admin.scm (pam-mount)[arguments]: Rewrite as G-expressions.master
parent
7174391cac
commit
63d2348aaa
|
@ -4634,11 +4634,12 @@ tcpdump and snoop.")
|
||||||
(base32 "0832nh2qf9pisgwnbgx6hkylx5d7i416l19y3ly4ifv7k1p7mxqa"))))
|
(base32 "0832nh2qf9pisgwnbgx6hkylx5d7i416l19y3ly4ifv7k1p7mxqa"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
(list
|
||||||
(list (string-append "--with-slibdir=" %output "/lib")
|
#:configure-flags
|
||||||
(string-append "--with-ssbindir=" %output "/sbin"))
|
#~(list (string-append "--with-slibdir=" #$output "/lib")
|
||||||
|
(string-append "--with-ssbindir=" #$output "/sbin"))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'patch-file-names
|
(add-after 'unpack 'patch-file-names
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
|
|
Reference in New Issue