Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 15 lines 303 B view raw
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})