depot/pkgs/development/ocaml-modules/qtest/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

29 lines
712 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;
};
}