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

46 lines
1.4 KiB
Nix
Raw Normal View History

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