mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
16 lines
303 B
Nix
16 lines
303 B
Nix
{ buildDunePackage, qcheck-core, alcotest }:
|
|
|
|
buildDunePackage {
|
|
pname = "qcheck-alcotest";
|
|
|
|
inherit (qcheck-core) version src patches;
|
|
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [ qcheck-core alcotest ];
|
|
|
|
meta = qcheck-core.meta // {
|
|
description = "Alcotest backend for qcheck";
|
|
};
|
|
}
|