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
parabolic: 2024.5.0 -> 2025.1.4 (#378350)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
qcheck
/
ounit.nix
blob
6a09f20dfdf0ae8f3ae9ca53d714e54de3949637
1
{
2
buildDunePackage,
3
qcheck-core,
4
ounit,
5
}:
6
7
buildDunePackage {
8
pname = "qcheck-ounit";
9
10
inherit (qcheck-core) version src patches;
11
12
duneVersion = "3";
13
14
propagatedBuildInputs = [
15
qcheck-core
16
ounit
17
];
18
19
meta = qcheck-core.meta // {
20
description = "OUnit backend for qcheck";
21
};
22
23
}