forked from mirrors/nixpkgs
14 lines
273 B
Nix
14 lines
273 B
Nix
|
{ buildDunePackage, qcheck-core, alcotest }:
|
||
|
|
||
|
buildDunePackage {
|
||
|
pname = "qcheck-alcotest";
|
||
|
|
||
|
inherit (qcheck-core) version src;
|
||
|
|
||
|
propagatedBuildInputs = [ qcheck-core alcotest ];
|
||
|
|
||
|
meta = qcheck-core.meta // {
|
||
|
description = "Alcotest backend for qcheck";
|
||
|
};
|
||
|
}
|