lol

ocamlPackages.qcheck-lin: init at 0.2

+19
+17
pkgs/development/ocaml-modules/qcheck/lin.nix
··· 1 + { buildDunePackage 2 + , qcheck-multicoretests-util 3 + }: 4 + 5 + buildDunePackage { 6 + pname = "qcheck-lin"; 7 + 8 + inherit (qcheck-multicoretests-util) version src; 9 + 10 + propagatedBuildInputs = [ qcheck-multicoretests-util ]; 11 + 12 + doCheck = true; 13 + 14 + meta = qcheck-multicoretests-util.meta // { 15 + description = "A multicore testing library for OCaml"; 16 + }; 17 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 1464 1464 1465 1465 qcheck-core = callPackage ../development/ocaml-modules/qcheck/core.nix { }; 1466 1466 1467 + qcheck-lin = callPackage ../development/ocaml-modules/qcheck/lin.nix { }; 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 { };