mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 10:44:36 +00:00
35 lines
755 B
Nix
35 lines
755 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchFromGitHub,
|
|
qcheck,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "qtest";
|
|
version = "2.11.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vincent-hugot";
|
|
repo = "qtest";
|
|
rev = "v${finalAttrs.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 (finalAttrs.src.meta) homepage;
|
|
maintainers = with lib.maintainers; [ vbgl ];
|
|
license = lib.licenses.gpl3;
|
|
};
|
|
})
|