mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: rng-tools: Update to 6.7.
* gnu/packages/linux.scm (rng-tools): Update to 6.7. [arguments]: Add ‘--without-pkcs11’ to #:configure-flags to avoid a new dependeny on libp11.
This commit is contained in:
parent
3351f42acf
commit
ae67d70daa
1 changed files with 4 additions and 3 deletions
|
@ -3699,7 +3699,7 @@ (define-public rng-tools
|
|||
(package
|
||||
(name "rng-tools")
|
||||
(home-page "https://github.com/nhorman/rng-tools")
|
||||
(version "6.6")
|
||||
(version "6.7")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference (url home-page)
|
||||
|
@ -3707,11 +3707,12 @@ (define-public rng-tools
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0c32sxfvngdjzfmxn5ngc5yxwi8ij3yl216nhzyz9r31qi3m14v7"))))
|
||||
"19f75m6mzg8h7b4snzg7d6ypvkz6nq32lrpi9ja95gqz4wsd18a5"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(;; Avoid using OpenSSL, curl, and libxml2, reducing the closure by 166 MiB.
|
||||
#:configure-flags '("--without-nistbeacon")))
|
||||
#:configure-flags '("--without-nistbeacon"
|
||||
"--without-pkcs11")))
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
|
|
Loading…
Reference in a new issue