depot/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

{ buildDunePackage, qcheck-ounit }:
buildDunePackage {
pname = "qcheck";
inherit (qcheck-ounit) version src patches;
duneVersion = "3";
propagatedBuildInputs = [ qcheck-ounit ];
meta = qcheck-ounit.meta // {
description = "Compatibility package for qcheck";
};
}