Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
35 lines
721 B
Nix
35 lines
721 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchFromGitHub,
|
|
qcheck,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "qtest";
|
|
version = "2.11.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vincent-hugot";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-VLY8+Nu6md0szW4RVxTFwlSQ9kyrgUqf7wQEA6GW8BE=";
|
|
};
|
|
|
|
preBuild = ''
|
|
substituteInPlace src/dune \
|
|
--replace "(libraries bytes)" "" \
|
|
--replace "libraries qcheck ounit2 bytes" "libraries qcheck ounit2"
|
|
'';
|
|
|
|
propagatedBuildInputs = [ qcheck ];
|
|
|
|
meta = {
|
|
description = "Inline (Unit) Tests for OCaml";
|
|
mainProgram = "qtest";
|
|
inherit (src.meta) homepage;
|
|
maintainers = with lib.maintainers; [ vbgl ];
|
|
license = lib.licenses.gpl3;
|
|
};
|
|
}
|