ocamlPackages.ounit2: init at 2.2.2

This commit is contained in:
sternenseemann
2020-04-15 15:01:36 +02:00
committed by Vincent Laporte
parent b1325ec4bc
commit 29a98f2be1
3 changed files with 31 additions and 29 deletions
@@ -0,0 +1,22 @@
{ lib, buildDunePackage, fetchurl, stdlib-shims }:
buildDunePackage rec {
minimumOCamlVersion = "4.02.3";
pname = "ounit2";
version = "2.2.2";
src = fetchurl {
url = "https://github.com/gildor478/ounit/releases/download/v${version}/ounit-v${version}.tbz";
sha256 = "1h4xdcyzwyhxg263w9b16x9n6cb11fzazmwnsnpich4djpl9lhsk";
};
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 ];
};
}