Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildDunePackage, junit, alcotest }:
2
3buildDunePackage ({
4 pname = "junit_alcotest";
5
6 inherit (junit) src version meta;
7 duneVersion = "3";
8
9 propagatedBuildInputs = [
10 junit
11 alcotest
12 ];
13
14 doCheck = false; # 2 tests fail: 1) "Test with unexpected exception"; 2) "with wrong result";
15})