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