summary refs log tree commit diff
path: root/pkgs/development/libraries/criterion
diff options
context:
space:
mode:
authorGuillaume Pagnoux <gpagnoux@gmail.com>2019-10-09 14:44:38 +0200
committerGuillaume Pagnoux <gpagnoux@gmail.com>2019-10-09 14:48:55 +0200
commitb76cfafa8edb77ed69e3138c99cdb399052af82e (patch)
treee3b804eddb9e6fd7e384acdb04f7464fb22f4b1c /pkgs/development/libraries/criterion
parentb76e290d803825137fd10648ce14e04cb8512fa8 (diff)
downloadnixpkgs-b76cfafa8edb77ed69e3138c99cdb399052af82e.tar
nixpkgs-b76cfafa8edb77ed69e3138c99cdb399052af82e.tar.gz
nixpkgs-b76cfafa8edb77ed69e3138c99cdb399052af82e.tar.bz2
nixpkgs-b76cfafa8edb77ed69e3138c99cdb399052af82e.tar.lz
nixpkgs-b76cfafa8edb77ed69e3138c99cdb399052af82e.tar.xz
nixpkgs-b76cfafa8edb77ed69e3138c99cdb399052af82e.tar.zst
nixpkgs-b76cfafa8edb77ed69e3138c99cdb399052af82e.zip
criterion: init at 2.3.3
Signed-off-by: Guillaume Pagnoux <gpagnoux@gmail.com>
Diffstat (limited to 'pkgs/development/libraries/criterion')
-rw-r--r--pkgs/development/libraries/criterion/default.nix49
1 files changed, 49 insertions, 0 deletions
diff --git a/pkgs/development/libraries/criterion/default.nix b/pkgs/development/libraries/criterion/default.nix
new file mode 100644
index 00000000000..c2721d3839a
--- /dev/null
+++ b/pkgs/development/libraries/criterion/default.nix
@@ -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;
+  };
+}