summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrey Arapov <arno@nixaid.com>2015-01-28 13:59:03 +0100
committerPeter Simons <simons@cryp.to>2015-01-28 16:45:46 +0100
commit269523382324f6e51c60222ae8351460ff27dd0a (patch)
treef813b750f180dbcf4229e2ef56fb867b6ba56173
parent1ae5dd1457a81d50bd8b541ea1195c029532ef33 (diff)
downloadnixpkgs-269523382324f6e51c60222ae8351460ff27dd0a.tar
nixpkgs-269523382324f6e51c60222ae8351460ff27dd0a.tar.gz
nixpkgs-269523382324f6e51c60222ae8351460ff27dd0a.tar.bz2
nixpkgs-269523382324f6e51c60222ae8351460ff27dd0a.tar.lz
nixpkgs-269523382324f6e51c60222ae8351460ff27dd0a.tar.xz
nixpkgs-269523382324f6e51c60222ae8351460ff27dd0a.tar.zst
nixpkgs-269523382324f6e51c60222ae8351460ff27dd0a.zip
Adds a new package: ent - A Pseudorandom Number Sequence Test Program
The program is useful for evaluating pseudorandom number generators
for encryption and statistical sampling applications, compression
algorithms, and other applications where the information density of a
file is of interest.

Official page http://www.fourmilab.ch/random/
-rw-r--r--pkgs/tools/misc/ent/default.nix27
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/tools/misc/ent/default.nix b/pkgs/tools/misc/ent/default.nix
new file mode 100644
index 00000000000..d6ad7f1d26b
--- /dev/null
+++ b/pkgs/tools/misc/ent/default.nix
@@ -0,0 +1,27 @@
+{stdenv, fetchurl, unzip}:
+
+stdenv.mkDerivation rec {
+  name = "ent-1.1";
+
+  src = fetchurl {
+    url = "http://www.fourmilab.ch/random/random.zip";
+    sha256 = "1v39jlj3lzr5f99avzs2j2z6anqqd64bzm1pdf6q84a5n8nxckn1";
+  };
+
+  # Work around the "unpacker appears to have produced no directories"
+  # case that happens when the archive doesn't have a subdirectory.
+  setSourceRoot = "sourceRoot=`pwd`";
+
+  buildInputs = [ unzip ];
+
+  installPhase = ''
+    mkdir -p $out/bin
+    cp ent $out/bin/
+  '';
+
+  meta = {
+    description = "Pseudorandom Number Sequence Test Program";
+    homepage = http://www.fourmilab.ch/random/;
+    platforms = stdenv.lib.platforms.all;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 895920061ca..79e33e9ac4a 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -725,6 +725,8 @@ let
 
   enca = callPackage ../tools/text/enca { };
 
+  ent = callPackage ../tools/misc/ent { };
+
   fasd = callPackage ../tools/misc/fasd { };
 
   fop = callPackage ../tools/typesetting/fop { };