Skip to content

Instantly share code, notes, and snippets.

@idontgetoutmuch
Created February 11, 2020 09:14
Show Gist options
  • Select an option

  • Save idontgetoutmuch/533c2fd80cbcae07db31d889ce5adb55 to your computer and use it in GitHub Desktop.

Select an option

Save idontgetoutmuch/533c2fd80cbcae07db31d889ce5adb55 to your computer and use it in GitHub Desktop.
{stdenv, fetchurl, unzip}:
stdenv.mkDerivation rec {
name = "TestU01-1.2.3";
src = fetchurl {
url = "http://simul.iro.umontreal.ca/testu01/TestU01.zip";
sha256 = "1b0wxp9c1ha3yvj8zv3swqfg24srwn72rbga50ykpvd7mv91s7dw";
};
nativeBuildInputs = [ unzip ];
unpackPhase = "unzip ${src}";
buildInputs = [ ];
configureFlags = [ ];
meta = with stdenv.lib; {
description = "Empirical Statistical Testing of Uniform Random Number Generators";
license = licenses.gpl3;
homepage = http://simul.iro.umontreal.ca/testu01/tu01.html;
maintainers = [ maintainers.idontgetoutmuch ];
};
}
no configure script, doing nothing
building
no Makefile, doing nothing
installing
install flags: SHELL=/nix/store/manwblxv4n70fwji369liqc7g9jbl0vr-bash-4.4-p23/bin/bash install
make: *** No rule to make target 'install'. Stop.
builder for '/nix/store/8kzbwnlrfbhs994f0jvd18xmlxzz55hz-TestU01-1.2.3.drv' failed with exit code 2
error: build of '/nix/store/8kzbwnlrfbhs994f0jvd18xmlxzz55hz-TestU01-1.2.3.drv' failed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment