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