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

15 lines
255 B
Nix
Raw Normal View History

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