mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 07:00:32 -05:00
gnu: jitterentropy-rngd: Use G-expressions.
* gnu/packages/linux.scm (jitterentropy-rngd)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
b4a62d7e88
commit
115f92af62
1 changed files with 9 additions and 8 deletions
|
@ -2684,14 +2684,15 @@ (define-public jitterentropy-rngd
|
||||||
(base32 "13br8s6gqnfc844ps38ya5nny3pndsmskszv3dsp1cxcgvmscg1c"))))
|
(base32 "13br8s6gqnfc844ps38ya5nny3pndsmskszv3dsp1cxcgvmscg1c"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no test suite
|
(list
|
||||||
#:make-flags
|
#:tests? #f ; no test suite
|
||||||
(list (string-append "CC=" ,(cc-for-target))
|
#:make-flags
|
||||||
(string-append "PREFIX=" (assoc-ref %outputs "out"))
|
#~(list (string-append "CC=" #$(cc-for-target))
|
||||||
"UNITDIR=$(PREFIX)/lib/systemd/system")
|
(string-append "PREFIX=" #$output)
|
||||||
#:phases
|
"UNITDIR=$(PREFIX)/lib/systemd/system")
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
(delete 'configure)))) ; no ./configure script
|
#~(modify-phases %standard-phases
|
||||||
|
(delete 'configure)))) ; no ./configure script
|
||||||
(home-page "https://www.chronox.de/jent.html")
|
(home-page "https://www.chronox.de/jent.html")
|
||||||
(synopsis "CPU jitter random number generator daemon")
|
(synopsis "CPU jitter random number generator daemon")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue