nixpkgs/pkgs/development/ocaml-modules/junit/alcotest.nix
superherointj 60f5a3c18d ocamlPackages.junit: init 2.0.2
ocamlPackages.junit_ounit: init 2.0.2
ocamlPackages.junit_alcotest: init 2.0.2
2021-06-02 18:13:07 +02:00

15 lines
291 B
Nix

{ buildDunePackage, junit, alcotest }:
buildDunePackage ({
pname = "junit_alcotest";
inherit (junit) src version meta useDune2;
propagatedBuildInputs = [
junit
alcotest
];
doCheck = false; # 2 tests fail: 1) "Test with unexpected exception"; 2) "with wrong result";
})