2017-08-20 22:55:59 -07:00
|
|
|
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, qcheck, ounit }:
|
2015-03-21 01:52:59 -07:00
|
|
|
|
2017-07-08 02:31:11 -07:00
|
|
|
if !stdenv.lib.versionAtLeast ocaml.version "4"
|
|
|
|
then throw "qtest is not available for OCaml ${ocaml.version}"
|
|
|
|
else
|
|
|
|
|
2017-10-15 22:49:12 -07:00
|
|
|
let version = "2.7"; in
|
2015-03-21 01:52:59 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2017-10-15 22:49:12 -07:00
|
|
|
name = "ocaml${ocaml.version}-qtest-${version}";
|
2015-03-21 01:52:59 -07:00
|
|
|
src = fetchzip {
|
|
|
|
url = "https://github.com/vincent-hugot/iTeML/archive/v${version}.tar.gz";
|
2017-10-15 22:49:12 -07:00
|
|
|
sha256 = "0z72m2drp67qchvsxx4sg2qjrrq8hp6p9kzdx16ibx58pvpw1sh2";
|
2015-03-21 01:52:59 -07:00
|
|
|
};
|
|
|
|
|
2016-10-07 23:44:25 -07:00
|
|
|
buildInputs = [ ocaml findlib ocamlbuild ];
|
2017-08-20 22:55:59 -07:00
|
|
|
propagatedBuildInputs = [ qcheck ounit ];
|
2015-03-21 01:52:59 -07:00
|
|
|
|
2016-09-14 10:04:58 -07:00
|
|
|
installFlags = [ "BIN=$(out)/bin" ];
|
|
|
|
preInstall = "mkdir -p $out/bin";
|
2015-03-21 01:52:59 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Inline (Unit) Tests for OCaml (formerly “qtest”)";
|
|
|
|
homepage = https://github.com/vincent-hugot/iTeML;
|
2015-12-24 09:49:07 -08:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2015-03-21 01:52:59 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
|
|
|
};
|
|
|
|
}
|