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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
285 B
Nix
Raw Normal View History

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