nixpkgs/pkgs/development/ocaml-modules/qcheck/default.nix

15 lines
264 B
Nix
Raw Normal View History

2020-09-13 17:03:22 +01:00
{ buildDunePackage, qcheck-ounit }:
2015-07-01 19:17:49 +01:00
2020-09-13 17:03:22 +01:00
buildDunePackage {
pname = "qcheck";
2015-07-01 19:17:49 +01:00
2020-11-30 07:18:45 +00:00
inherit (qcheck-ounit) version useDune2 src;
2015-07-01 19:17:49 +01:00
2020-09-13 17:03:22 +01:00
propagatedBuildInputs = [ qcheck-ounit ];
2015-07-01 19:17:49 +01:00
2020-09-13 17:03:22 +01:00
meta = qcheck-ounit.meta // {
description = "Compatibility package for qcheck";
2015-07-01 19:17:49 +01:00
};
2020-09-13 17:03:22 +01:00
2015-07-01 19:17:49 +01:00
}