f9fdf2d402
with structuredAttrs lists will be bash arrays which cannot be exported which will be a issue with some patches and some wrappers like cc-wrapper this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists in env cause a eval failure
37 lines
1001 B
Nix
37 lines
1001 B
Nix
{ lib, stdenv, fetchurl, gsl
|
|
, dieharder, testers }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dieharder";
|
|
version = "3.31.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://webhome.phy.duke.edu/~rgb/General/dieharder/dieharder-${version}.tgz";
|
|
hash = "sha256-bP8P+DlMVTVJrHQzNZzPyVX7JnlCYDFGIN+l5M1Lcn8=";
|
|
};
|
|
|
|
patches = [
|
|
# Include missing stdint.h header
|
|
./stdint.patch
|
|
];
|
|
|
|
# Workaround build failure on -fno-common toolchains:
|
|
# ld: include/dieharder/parse.h:21: multiple definition of `splitbuf';
|
|
# include/dieharder/parse.h:21: first defined here
|
|
env.NIX_CFLAGS_COMPILE = "-fcommon";
|
|
|
|
buildInputs = [ gsl ];
|
|
|
|
passthru = {
|
|
tests.version = testers.testVersion { package = dieharder; };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A Random Number Generator test suite";
|
|
homepage = "https://webhome.phy.duke.edu/~rgb/General/dieharder.php";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ zhaofengli ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|