ocamlPackages.qtest: 2.6 -> 2.7

This commit is contained in:
Vincent Laporte 2017-10-16 05:49:12 +00:00
parent 02a23b7b24
commit 4cec2d6fb7
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -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 ];