mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
17 lines
292 B
Nix
17 lines
292 B
Nix
{ buildDunePackage, qcheck-core, ounit }:
|
|
|
|
buildDunePackage {
|
|
pname = "qcheck-ounit";
|
|
|
|
inherit (qcheck-core) version src patches;
|
|
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [ qcheck-core ounit ];
|
|
|
|
meta = qcheck-core.meta // {
|
|
description = "OUnit backend for qcheck";
|
|
};
|
|
|
|
}
|