mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
15 lines
271 B
Nix
15 lines
271 B
Nix
{ buildDunePackage, qcheck-core, ounit }:
|
|
|
|
buildDunePackage {
|
|
pname = "qcheck-ounit";
|
|
|
|
inherit (qcheck-core) version useDune2 src;
|
|
|
|
propagatedBuildInputs = [ qcheck-core ounit ];
|
|
|
|
meta = qcheck-core.meta // {
|
|
description = "OUnit backend for qcheck";
|
|
};
|
|
|
|
}
|