mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
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";
|
|
};
|
|
|
|
}
|