Created
February 11, 2020 09:14
-
-
Save idontgetoutmuch/533c2fd80cbcae07db31d889ce5adb55 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {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 ]; | |
| }; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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