gnu: mdadm-static: Use G-expressions.

* gnu/packages/linux.scm (mdadm-static)[arguments]:
Rewrite as G-expressions.

Reported by Christopher Baines <mail@cbaines.net>
This commit is contained in:
Tobias Geerinckx-Rice 2022-01-06 16:56:18 +01:00
parent af1b5de6d8
commit 55bf2d31e9
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -5078,9 +5078,9 @@ (define-public mdadm-static
(arguments
(substitute-keyword-arguments (package-arguments mdadm)
((#:make-flags flags)
`(cons "LDFLAGS = -static" ,flags))
#~(cons "LDFLAGS = -static" #$flags))
((#:phases phases)
`(modify-phases ,phases
#~(modify-phases #$phases
(add-after 'install 'remove-cruft
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
@ -5090,8 +5090,7 @@ (define-public mdadm-static
(with-directory-excursion out
(for-each delete-file-recursively directories)
(remove-store-references "sbin/mdadm")
(delete-file "sbin/mdmon")
#t))))))
(delete-file "sbin/mdmon")))))))
((#:modules modules %gnu-build-system-modules)
`((ice-9 ftw) ,@modules))
((#:strip-flags _ '())