nixpkgs/pkgs/development/ocaml-modules/junit/alcotest.nix

15 lines
291 B
Nix
Raw Normal View History

{ 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";
})