15 lines
263 B
Nix
15 lines
263 B
Nix
{ buildDunePackage, qcheck-ounit }:
|
|
|
|
buildDunePackage {
|
|
pname = "qcheck";
|
|
|
|
inherit (qcheck-ounit) version src patches;
|
|
|
|
propagatedBuildInputs = [ qcheck-ounit ];
|
|
|
|
meta = qcheck-ounit.meta // {
|
|
description = "Compatibility package for qcheck";
|
|
};
|
|
|
|
}
|