mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: lynis: Work.
Work around <https://issues.guix.gnu.org/55287>. * gnu/packages/admin.scm (lynis)[arguments]: Add a custom 'unpack phase that doesn't MAKE-FILE-WRITABLE.
This commit is contained in:
parent
e490aacde1
commit
52431e42ef
1 changed files with 7 additions and 0 deletions
|
@ -4399,6 +4399,13 @@ Logitech Unifying Receiver.")
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(replace 'unpack
|
||||||
|
;; XXX Remove after fixing <https://issues.guix.gnu.org/55287>.
|
||||||
|
(lambda* (#:key source #:allow-other-keys)
|
||||||
|
(mkdir "source")
|
||||||
|
(chdir "source")
|
||||||
|
(copy-recursively source "."
|
||||||
|
#:keep-mtime? #t)))
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(substitute* "lynis"
|
(substitute* "lynis"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue