about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/junit/alcotest.nix
blob: 85abaf7f872b1d95142f69c54671e087f65250aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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";
})