tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.qcheck-lin: init at 0.2
Vincent Laporte
2 years ago
991356c8
aa47da4c
+19
2 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
qcheck
lin.nix
top-level
ocaml-packages.nix
+17
pkgs/development/ocaml-modules/qcheck/lin.nix
reviewed
···
1
1
+
{ buildDunePackage
2
2
+
, qcheck-multicoretests-util
3
3
+
}:
4
4
+
5
5
+
buildDunePackage {
6
6
+
pname = "qcheck-lin";
7
7
+
8
8
+
inherit (qcheck-multicoretests-util) version src;
9
9
+
10
10
+
propagatedBuildInputs = [ qcheck-multicoretests-util ];
11
11
+
12
12
+
doCheck = true;
13
13
+
14
14
+
meta = qcheck-multicoretests-util.meta // {
15
15
+
description = "A multicore testing library for OCaml";
16
16
+
};
17
17
+
}
+2
pkgs/top-level/ocaml-packages.nix
reviewed
···
1464
1464
1465
1465
qcheck-core = callPackage ../development/ocaml-modules/qcheck/core.nix { };
1466
1466
1467
1467
+
qcheck-lin = callPackage ../development/ocaml-modules/qcheck/lin.nix { };
1468
1468
+
1467
1469
qcheck-multicoretests-util = callPackage ../development/ocaml-modules/qcheck/multicoretests-util.nix { };
1468
1470
1469
1471
qcheck-ounit = callPackage ../development/ocaml-modules/qcheck/ounit.nix { };