gnu: rng-tools: Update to 6.10.

* gnu/packages/linux.scm (rng-tools): Update to 6.10.
[arguments]: Add --without-rtlsdr in #:configure-flags.
[inputs]: Add OPENSSL, which is no longer optional.
This commit is contained in:
Marius Bakke 2020-05-11 16:53:58 +02:00
parent a709af5853
commit fc66a560ef
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA

View File

@ -5157,7 +5157,7 @@ The collection contains a set of bandwidth and latency benchmark such as:
(package (package
(name "rng-tools") (name "rng-tools")
(home-page "https://github.com/nhorman/rng-tools") (home-page "https://github.com/nhorman/rng-tools")
(version "6.9") (version "6.10")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (url home-page) (uri (git-reference (url home-page)
@ -5165,18 +5165,22 @@ The collection contains a set of bandwidth and latency benchmark such as:
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"065jf26s8zkicb95zc9ilksjdq9gqrh5vcx3mhi6mypbnamn6w98")))) "0hbml37yxs0fs69g7f2x4ixq61z0029swy99rn7ykma9mi6b7ni9"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(;; Avoid using OpenSSL, curl, and libxml2, reducing the closure by 166 MiB. `(;; Disable support for various hardware entropy sources as they need
;; dependencies that are not yet in Guix, and would significantly
;; increase closure size.
#:configure-flags '("--without-nistbeacon" #:configure-flags '("--without-nistbeacon"
"--without-pkcs11"))) "--without-pkcs11"
"--without-rtlsdr")))
(native-inputs (native-inputs
`(("autoconf" ,autoconf) `(("autoconf" ,autoconf)
("automake" ,automake) ("automake" ,automake)
("pkg-config" ,pkg-config))) ("pkg-config" ,pkg-config)))
(inputs (inputs
`(("libsysfs" ,sysfsutils))) `(("libsysfs" ,sysfsutils)
("openssl" ,openssl)))
(synopsis "Random number generator daemon") (synopsis "Random number generator daemon")
(description (description
"Monitor a hardware random number generator, and supply entropy "Monitor a hardware random number generator, and supply entropy