1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 07:00:43 +00:00

Add rng-tools

This commit is contained in:
Shea Levy 2012-11-22 01:05:45 -05:00
parent cae78ef3e3
commit 7a16291828
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "rng-tools-4";
src = fetchurl {
url = "mirror://sourceforge/gkernel/${name}.tar.gz";
sha256 = "15f17j3lxn1v2mhdxvy3pahz41hn1vlnnm81c0qyh19c4bady6xp";
};
meta = {
description = "A random number generator daemon";
homepage = http://sourceforge.net/projects/gkernel;
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.shlevy ];
};
}

View file

@ -1417,6 +1417,8 @@ let
ripmime = callPackage ../tools/networking/ripmime {};
rng_tools = callPackage ../tools/security/rng-tools { };
rsnapshot = callPackage ../tools/backup/rsnapshot {
# For the `logger' command, we can use either `utillinux' or
# GNU Inetutils. The latter is more portable.