depot/third_party/nixpkgs/pkgs/development/ocaml-modules/qcheck/default.nix
Default email 58f8944c92 Project import generated by Copybara.
GitOrigin-RevId: 5aba0fe9766a7201a336249fd6cb76e0d7ba2faf
2020-09-24 23:45:31 -05:00

14 lines
255 B
Nix

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