summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/parmap
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-05-28 14:10:41 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2022-06-23 22:38:13 +0200
commit57777e6d56235fe64620ac1605fc3a2009842ffa (patch)
treee8e911a435a35643c44a6feef2480e241c205a77 /pkgs/development/ocaml-modules/parmap
parent8e530526dc5980f2f15fd96d61b8dee1055e5533 (diff)
downloadnixpkgs-57777e6d56235fe64620ac1605fc3a2009842ffa.tar
nixpkgs-57777e6d56235fe64620ac1605fc3a2009842ffa.tar.gz
nixpkgs-57777e6d56235fe64620ac1605fc3a2009842ffa.tar.bz2
nixpkgs-57777e6d56235fe64620ac1605fc3a2009842ffa.tar.lz
nixpkgs-57777e6d56235fe64620ac1605fc3a2009842ffa.tar.xz
nixpkgs-57777e6d56235fe64620ac1605fc3a2009842ffa.tar.zst
nixpkgs-57777e6d56235fe64620ac1605fc3a2009842ffa.zip
ocamlPackages.parmap: disable tests
Diffstat (limited to 'pkgs/development/ocaml-modules/parmap')
-rw-r--r--pkgs/development/ocaml-modules/parmap/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/parmap/default.nix b/pkgs/development/ocaml-modules/parmap/default.nix
index 521c1c40671..18e1975b698 100644
--- a/pkgs/development/ocaml-modules/parmap/default.nix
+++ b/pkgs/development/ocaml-modules/parmap/default.nix
@@ -10,13 +10,12 @@ buildDunePackage rec {
   };
 
   minimalOCamlVersion = "4.03";
-  useDune2 = true;
 
   buildInputs = [
     dune-configurator
   ];
 
-  doCheck = true;
+  doCheck = false; # prevent running slow benchmarks
 
   meta = with lib; {
     description = "Library for multicore parallel programming";