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

23 lines
607 B
Nix
Raw Normal View History

2020-04-13 15:42:14 +01:00
{ lib, buildDunePackage, fetchurl, stdlib-shims }:
buildDunePackage rec {
minimumOCamlVersion = "4.04";
2020-04-13 15:42:14 +01:00
pname = "ounit2";
version = "2.2.3";
2020-04-13 15:42:14 +01:00
src = fetchurl {
url = "https://github.com/gildor478/ounit/releases/download/v${version}/ounit-v${version}.tbz";
sha256 = "1naahh24lbyxmrnzpfz8karniqbf1nknivf96mrvsr6zlx5ad072";
2020-04-13 15:42:14 +01:00
};
propagatedBuildInputs = [ stdlib-shims ];
meta = with lib; {
homepage = "https://github.com/gildor478/ounit";
description = "A unit test framework for OCaml";
license = licenses.mit;
maintainers = with maintainers; [ sternenseemann ];
};
}