criterion: init at 2.3.3
Signed-off-by: Guillaume Pagnoux <gpagnoux@gmail.com>
This commit is contained in:
parent
b76e290d80
commit
b76cfafa8e
49
pkgs/development/libraries/criterion/default.nix
Normal file
49
pkgs/development/libraries/criterion/default.nix
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, boxfort, cmake, libcsptr, pkg-config, gettext
|
||||||
|
, dyncall , nanomsg, python37Packages }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "2.3.3";
|
||||||
|
pname = "criterion";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Snaipe";
|
||||||
|
repo = "Criterion";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0y1ay8is54k3y82vagdy0jsa3nfkczpvnqfcjm5n9iarayaxaq8p";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkg-config ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
boxfort.dev
|
||||||
|
dyncall
|
||||||
|
gettext
|
||||||
|
libcsptr
|
||||||
|
nanomsg
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = with python37Packages; [ cram ];
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DCTESTS=ON" ];
|
||||||
|
doCheck = true;
|
||||||
|
preCheck = ''
|
||||||
|
export LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH
|
||||||
|
'';
|
||||||
|
checkTarget = "criterion_tests test";
|
||||||
|
|
||||||
|
outputs = [ "dev" "out" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A cross-platform C and C++ unit testing framework for the 21th century";
|
||||||
|
homepage = "https://github.com/Snaipe/Criterion";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [
|
||||||
|
thesola10
|
||||||
|
Yumasi
|
||||||
|
];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -10600,6 +10600,8 @@ in
|
|||||||
|
|
||||||
cre2 = callPackage ../development/libraries/cre2 { };
|
cre2 = callPackage ../development/libraries/cre2 { };
|
||||||
|
|
||||||
|
criterion = callPackage ../development/libraries/criterion { };
|
||||||
|
|
||||||
croaring = callPackage ../development/libraries/croaring { };
|
croaring = callPackage ../development/libraries/croaring { };
|
||||||
|
|
||||||
cryptopp = callPackage ../development/libraries/crypto++ { };
|
cryptopp = callPackage ../development/libraries/crypto++ { };
|
||||||
|
Loading…
Reference in New Issue
Block a user