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

28 lines
775 B
Nix
Raw Normal View History

{ lib, ocaml, buildDunePackage, fetchurl, stdlib-shims, ncurses }:
2020-04-13 14:42:14 +00:00
buildDunePackage rec {
minimumOCamlVersion = "4.04";
2020-04-13 14:42:14 +00:00
pname = "ounit2";
version = "2.2.4";
2020-04-13 14:42:14 +00:00
2021-02-16 17:04:54 +00:00
useDune2 = lib.versionAtLeast ocaml.version "4.08";
2020-04-13 14:42:14 +00:00
src = fetchurl {
url = "https://github.com/gildor478/ounit/releases/download/v${version}/ounit-v${version}.tbz";
sha256 = "0i9kiqbf2dp12c4qcvbn4abdpdp6h4g5z54ycsh0q8jpv6jnkh5m";
2020-04-13 14:42:14 +00:00
};
propagatedBuildInputs = [ stdlib-shims ];
doCheck = true;
checkInputs = lib.optional (lib.versionOlder ocaml.version "4.07") ncurses;
2020-04-13 14:42:14 +00:00
meta = with lib; {
homepage = "https://github.com/gildor478/ounit";
description = "A unit test framework for OCaml";
license = licenses.mit;
maintainers = with maintainers; [ sternenseemann ];
};
}