nixpkgs/pkgs/development/ocaml-modules/alcotest/default.nix

42 lines
1.2 KiB
Nix
Raw Normal View History

2018-09-05 16:11:47 +00:00
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, topkg, dune
2017-10-31 01:06:17 +00:00
, cmdliner, astring, fmt, result
}:
let param =
if stdenv.lib.versionAtLeast ocaml.version "4.02" then {
version = "0.8.2";
sha256 = "1zpg079v89mz2dpnh59f9hk5r03wl26skfn43llrv3kg24abjfpf";
2018-09-05 16:11:47 +00:00
buildInputs = [ dune ];
buildPhase = "dune build -p alcotest";
inherit (dune) installPhase;
2017-10-31 01:06:17 +00:00
} else {
version = "0.7.2";
sha256 = "1qgsz2zz5ky6s5pf3j3shc4fjc36rqnjflk8x0wl1fcpvvkr52md";
2017-12-14 07:36:29 +00:00
buildInputs = [ ocamlbuild topkg ];
2017-10-31 01:06:17 +00:00
inherit (topkg) buildPhase installPhase;
};
in
2016-10-25 17:32:16 +00:00
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-alcotest-${version}";
2017-10-31 01:06:17 +00:00
inherit (param) version buildPhase installPhase;
2015-10-13 01:46:01 +00:00
src = fetchzip {
url = "https://github.com/mirage/alcotest/archive/${version}.tar.gz";
2017-10-31 01:06:17 +00:00
inherit (param) sha256;
};
2017-10-31 01:06:17 +00:00
buildInputs = [ ocaml findlib ] ++ param.buildInputs;
2016-10-25 17:32:16 +00:00
propagatedBuildInputs = [ cmdliner astring fmt result ];
createFindlibDestdir = true;
meta = with stdenv.lib; {
2015-10-13 01:46:01 +00:00
homepage = https://github.com/mirage/alcotest;
description = "A lightweight and colourful test framework";
license = stdenv.lib.licenses.isc;
maintainers = [ maintainers.ericbmerritt ];
};
}