nixpkgs/pkgs/development/ocaml-modules/junit/alcotest.nix
2023-04-11 06:36:04 +02:00

16 lines
303 B
Nix

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