about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-10-16 05:49:12 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-10-16 07:02:03 +0000
commit4cec2d6fb71c8cdd04c8164101cfebe22e786929 (patch)
treec6aaf9712644446188f85fbd822c764d785ac4d9 /pkgs/development/ocaml-modules
parent02a23b7b24d753baec14a860404a93de6d62931d (diff)
downloadnixlib-4cec2d6fb71c8cdd04c8164101cfebe22e786929.tar
nixlib-4cec2d6fb71c8cdd04c8164101cfebe22e786929.tar.gz
nixlib-4cec2d6fb71c8cdd04c8164101cfebe22e786929.tar.bz2
nixlib-4cec2d6fb71c8cdd04c8164101cfebe22e786929.tar.lz
nixlib-4cec2d6fb71c8cdd04c8164101cfebe22e786929.tar.xz
nixlib-4cec2d6fb71c8cdd04c8164101cfebe22e786929.tar.zst
nixlib-4cec2d6fb71c8cdd04c8164101cfebe22e786929.zip
ocamlPackages.qtest: 2.6 -> 2.7
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/qtest/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/qtest/default.nix b/pkgs/development/ocaml-modules/qtest/default.nix
index eb65384fc975..ecc1a89a8040 100644
--- a/pkgs/development/ocaml-modules/qtest/default.nix
+++ b/pkgs/development/ocaml-modules/qtest/default.nix
@@ -4,13 +4,13 @@ if !stdenv.lib.versionAtLeast ocaml.version "4"
 then throw "qtest is not available for OCaml ${ocaml.version}"
 else
 
-let version = "2.6"; in
+let version = "2.7"; in
 
 stdenv.mkDerivation {
-  name = "ocaml-qtest-${version}";
+  name = "ocaml${ocaml.version}-qtest-${version}";
   src = fetchzip {
     url = "https://github.com/vincent-hugot/iTeML/archive/v${version}.tar.gz";
-    sha256 = "1v5c1n5p8rhnisn606fs05q8764lqwgw08w66y5dm8wgmxgmsb3k";
+    sha256 = "0z72m2drp67qchvsxx4sg2qjrrq8hp6p9kzdx16ibx58pvpw1sh2";
   };
 
   buildInputs = [ ocaml findlib ocamlbuild ];