2021-01-11 07:54:33 +00:00
|
|
|
{lib, stdenv, fetchurl, unzip}:
|
2015-01-28 12:59:03 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2015-01-28 12:59:03 +00:00
|
|
|
name = "ent-1.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.fourmilab.ch/random/random.zip";
|
2015-01-28 12:59:03 +00:00
|
|
|
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 ];
|
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
buildFlags = lib.optional stdenv.cc.isClang "CC=clang";
|
2015-05-14 23:43:46 +01:00
|
|
|
|
2015-01-28 12:59:03 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp ent $out/bin/
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-01-28 12:59:03 +00:00
|
|
|
description = "Pseudorandom Number Sequence Test Program";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.fourmilab.ch/random/";
|
2018-09-11 22:34:10 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.publicDomain;
|
2015-01-28 12:59:03 +00:00
|
|
|
};
|
|
|
|
}
|