From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 2/3] gnu: Add rng-tools 5. Date: Sun, 3 Jul 2016 04:26:28 +0200 Message-ID: <20160703022629.32137-2-david@craven.ch> References: <20160703014231.GA1178@jasmine> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52137) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bJX7a-0005BT-JJ for guix-devel@gnu.org; Sat, 02 Jul 2016 22:26:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bJX7W-0005YK-CE for guix-devel@gnu.org; Sat, 02 Jul 2016 22:26:57 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:41497) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bJX7V-0005YC-4v for guix-devel@gnu.org; Sat, 02 Jul 2016 22:26:54 -0400 In-Reply-To: <20160703014231.GA1178@jasmine> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: David Craven * gnu/packages/linux.scm: New package. --- gnu/packages/linux.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 7799350..f1b2172 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -2726,3 +2726,23 @@ from userspace.") commonly found on Microsoft Windows. It is implemented as a FUSE file system. The package provides additional NTFS tools.") (license license:gpl2+))) + +(define-public rng-tools + (package + (name "rng-tools") + (version "5") + (source (origin + (method url-fetch) + (uri (string-append + "http://downloads.sourceforge.net/sourceforge/gkernel/rng-tools-" version + ".tar.gz")) + (sha256 + (base32 + "13h7lc8wl9khhvkr0i3bl5j9bapf8anhqis1lcnwxg1vc2v058b0")))) + (build-system gnu-build-system) + (synopsis "Random number generator daemon") + (description + "Monitor a hardware random number generator, and supply entropy +from that to the system kernel's /dev/random machinery.") + (home-page "http://sourceforge.net/projects/gkernel") + (license license:gpl2))) -- 2.9.0