guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

10/13: gnu: rng-tools: Update to 6.10.


From: guix-commits
Subject: 10/13: gnu: rng-tools: Update to 6.10.
Date: Mon, 11 May 2020 16:04:20 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit fc66a560efc67fabb0ed346a7b3802edbe1f1253
Author: Marius Bakke <address@hidden>
AuthorDate: Mon May 11 16:53:58 2020 +0200

    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.
---
 gnu/packages/linux.scm | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 0146427..2900904 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -5157,7 +5157,7 @@ The collection contains a set of bandwidth and latency 
benchmark such as:
   (package
     (name "rng-tools")
     (home-page "https://github.com/nhorman/rng-tools";)
-    (version "6.9")
+    (version "6.10")
     (source (origin
               (method git-fetch)
               (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))
               (sha256
                (base32
-                "065jf26s8zkicb95zc9ilksjdq9gqrh5vcx3mhi6mypbnamn6w98"))))
+                "0hbml37yxs0fs69g7f2x4ixq61z0029swy99rn7ykma9mi6b7ni9"))))
     (build-system gnu-build-system)
     (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"
-                           "--without-pkcs11")))
+                           "--without-pkcs11"
+                           "--without-rtlsdr")))
     (native-inputs
      `(("autoconf" ,autoconf)
        ("automake" ,automake)
        ("pkg-config" ,pkg-config)))
     (inputs
-     `(("libsysfs" ,sysfsutils)))
+     `(("libsysfs" ,sysfsutils)
+       ("openssl" ,openssl)))
     (synopsis "Random number generator daemon")
     (description
      "Monitor a hardware random number generator, and supply entropy



reply via email to

[Prev in Thread] Current Thread [Next in Thread]