about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/qtest
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-08-21 07:55:59 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-08-21 09:39:45 +0200
commit2a62e931c104ce07fd8e39944ab4b9bd4f31e0cd (patch)
treeb763d50a5963cc0307227c2df79c03395abcc6b1 /pkgs/development/ocaml-modules/qtest
parent746979e0fc0c5043838962a67afd1baad017ee96 (diff)
downloadnixlib-2a62e931c104ce07fd8e39944ab4b9bd4f31e0cd.tar
nixlib-2a62e931c104ce07fd8e39944ab4b9bd4f31e0cd.tar.gz
nixlib-2a62e931c104ce07fd8e39944ab4b9bd4f31e0cd.tar.bz2
nixlib-2a62e931c104ce07fd8e39944ab4b9bd4f31e0cd.tar.lz
nixlib-2a62e931c104ce07fd8e39944ab4b9bd4f31e0cd.tar.xz
nixlib-2a62e931c104ce07fd8e39944ab4b9bd4f31e0cd.tar.zst
nixlib-2a62e931c104ce07fd8e39944ab4b9bd4f31e0cd.zip
ocamlPackages.qtest: 2.2 -> 2.6
ocamlPackages.batteries: 2.6.0 -> 2.7.0
Diffstat (limited to 'pkgs/development/ocaml-modules/qtest')
-rw-r--r--pkgs/development/ocaml-modules/qtest/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/qtest/default.nix b/pkgs/development/ocaml-modules/qtest/default.nix
index 4d3ab0ddb4f2..eb65384fc975 100644
--- a/pkgs/development/ocaml-modules/qtest/default.nix
+++ b/pkgs/development/ocaml-modules/qtest/default.nix
@@ -1,22 +1,21 @@
-{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, ounit }:
+{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, qcheck, ounit }:
 
 if !stdenv.lib.versionAtLeast ocaml.version "4"
 then throw "qtest is not available for OCaml ${ocaml.version}"
 else
 
-let version = "2.2"; in
+let version = "2.6"; in
 
 stdenv.mkDerivation {
   name = "ocaml-qtest-${version}";
   src = fetchzip {
     url = "https://github.com/vincent-hugot/iTeML/archive/v${version}.tar.gz";
-    sha256 = "1k68z8kby1f9s5j9xbn9bz8yhk59aalffz8gj5d1y5zhyalifrlz";
+    sha256 = "1v5c1n5p8rhnisn606fs05q8764lqwgw08w66y5dm8wgmxgmsb3k";
   };
 
   buildInputs = [ ocaml findlib ocamlbuild ];
-  propagatedBuildInputs = [ ounit ];
+  propagatedBuildInputs = [ qcheck ounit ];
 
-  createFindlibDestdir = true;
   installFlags = [ "BIN=$(out)/bin" ];
   preInstall = "mkdir -p $out/bin";