mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
15 lines
264 B
Nix
15 lines
264 B
Nix
{ buildDunePackage, qcheck-ounit }:
|
|
|
|
buildDunePackage {
|
|
pname = "qcheck";
|
|
|
|
inherit (qcheck-ounit) version useDune2 src;
|
|
|
|
propagatedBuildInputs = [ qcheck-ounit ];
|
|
|
|
meta = qcheck-ounit.meta // {
|
|
description = "Compatibility package for qcheck";
|
|
};
|
|
|
|
}
|