02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
14 lines
255 B
Nix
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";
|
|
};
|
|
|
|
}
|