mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
16 lines
303 B
Nix
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";
|
|
})
|