gnu: jitterentropy-rngd: Use G-expressions.

* gnu/packages/linux.scm (jitterentropy-rngd)[arguments]:
Rewrite as G-expressions.
This commit is contained in:
Tobias Geerinckx-Rice 2022-10-16 02:00:02 +02:00
parent b4a62d7e88
commit 115f92af62
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -2684,14 +2684,15 @@ (define-public jitterentropy-rngd
(base32 "13br8s6gqnfc844ps38ya5nny3pndsmskszv3dsp1cxcgvmscg1c"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; no test suite
#:make-flags
(list (string-append "CC=" ,(cc-for-target))
(string-append "PREFIX=" (assoc-ref %outputs "out"))
"UNITDIR=$(PREFIX)/lib/systemd/system")
#:phases
(modify-phases %standard-phases
(delete 'configure)))) ; no ./configure script
(list
#:tests? #f ; no test suite
#:make-flags
#~(list (string-append "CC=" #$(cc-for-target))
(string-append "PREFIX=" #$output)
"UNITDIR=$(PREFIX)/lib/systemd/system")
#:phases
#~(modify-phases %standard-phases
(delete 'configure)))) ; no ./configure script
(home-page "https://www.chronox.de/jent.html")
(synopsis "CPU jitter random number generator daemon")
(description