summary refs log tree commit diff
path: root/pkgs/tools/security/rng-tools/default.nix
blob: 1885940e7f3181fcc6696c59580973abcbacd4ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "rng-tools-5";

  src = fetchurl {
    url = "mirror://sourceforge/gkernel/${name}.tar.gz";

    sha256 = "13h7lc8wl9khhvkr0i3bl5j9bapf8anhqis1lcnwxg1vc2v058b0";
  };

  meta = {
    description = "A random number generator daemon";

    homepage = https://sourceforge.net/projects/gkernel;

    license = stdenv.lib.licenses.gpl2;

    platforms = stdenv.lib.platforms.linux;
  };
}