repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
signalbackup-tools: 20241220 -> 20250106 (#371523)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
junit
/
alcotest.nix
blob
edec978cbe8e32209ab92585098e0ab5ba1aa69e
1
{
2
buildDunePackage,
3
junit,
4
alcotest,
5
}:
6
7
buildDunePackage ({
8
pname = "junit_alcotest";
9
10
inherit (junit) src version meta;
11
duneVersion = "3";
12
13
propagatedBuildInputs = [
14
junit
15
alcotest
16
];
17
18
doCheck = false; # 2 tests fail: 1) "Test with unexpected exception"; 2) "with wrong result";
19
})