mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
20 lines
343 B
Nix
20 lines
343 B
Nix
{ buildDunePackage, qcheck-core
|
|
, qcheck, ppxlib, ppx_deriving }:
|
|
|
|
buildDunePackage {
|
|
pname = "ppx_deriving_qcheck";
|
|
|
|
inherit (qcheck-core) version src patches;
|
|
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [
|
|
qcheck
|
|
ppxlib
|
|
ppx_deriving
|
|
];
|
|
|
|
meta = qcheck-core.meta // {
|
|
description = "PPX Deriver for QCheck";
|
|
};
|
|
}
|