lol
1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "haveged-${version}";
5 version = "1.9.1";
6
7 src = fetchurl {
8 url = "http://www.issihosts.com/haveged/haveged-${version}.tar.gz";
9 sha256 = "059pxlfd4l5dqhd6r3lynzfz4wby2f17294fy17pi9j2jpnn68ww";
10 };
11
12 meta = {
13 description = "A simple entropy daemon";
14 longDescription = ''
15 The haveged project is an attempt to provide an easy-to-use, unpredictable
16 random number generator based upon an adaptation of the HAVEGE algorithm.
17 Haveged was created to remedy low-entropy conditions in the Linux random device
18 that can occur under some workloads, especially on headless servers. Current development
19 of haveged is directed towards improving overall reliability and adaptability while minimizing
20 the barriers to using haveged for other tasks.
21 '';
22 homepage = http://www.issihosts.com/haveged/;
23 license = stdenv.lib.licenses.gpl3;
24 maintainers = [ stdenv.lib.maintainers.iElectric ];
25 platforms = stdenv.lib.platforms.unix;
26 };
27}