me
/
guix
Archived
1
0
Fork 0

gnu: pam-mount: Use G-expressions.

* gnu/packages/admin.scm (pam-mount)[arguments]:
Rewrite as G-expressions.
master
Tobias Geerinckx-Rice 2022-10-30 02:00:01 +01:00
parent 7174391cac
commit 63d2348aaa
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 29 additions and 28 deletions

View File

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