Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 fetchurl, 5 seq, 6 stdlib-shims, 7}: 8 9buildDunePackage rec { 10 minimalOCamlVersion = "4.08"; 11 12 pname = "ounit2"; 13 version = "2.2.7"; 14 15 src = fetchurl { 16 url = "https://github.com/gildor478/ounit/releases/download/v${version}/ounit-${version}.tbz"; 17 hash = "sha256-kPbmO9EkClHYubL3IgWb15zgC1J2vdYji49cYTwOc4g="; 18 }; 19 20 propagatedBuildInputs = [ 21 seq 22 stdlib-shims 23 ]; 24 25 doCheck = true; 26 27 meta = with lib; { 28 homepage = "https://github.com/gildor478/ounit"; 29 description = "Unit test framework for OCaml"; 30 license = licenses.mit; 31 maintainers = with maintainers; [ sternenseemann ]; 32 }; 33}