depot/third_party/nixpkgs/pkgs/development/ocaml-modules/junit/alcotest.nix
Default email 5a8b500490 Project import generated by Copybara.
GitOrigin-RevId: 1ca6b0a0cc38dbba0441202535c92841dd39d1ae
2021-06-04 10:07:49 +01:00

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