nixpkgs/pkgs/development/ocaml-modules/qtest/default.nix
2023-04-05 08:43:27 +02:00

25 lines
536 B
Nix

{ lib, buildDunePackage, fetchFromGitHub, qcheck }:
buildDunePackage rec {
pname = "qtest";
version = "2.11.2";
duneVersion = "3";
src = fetchFromGitHub {
owner = "vincent-hugot";
repo = pname;
rev = "v${version}";
sha256 = "sha256-VLY8+Nu6md0szW4RVxTFwlSQ9kyrgUqf7wQEA6GW8BE=";
};
propagatedBuildInputs = [ qcheck ];
meta = {
description = "Inline (Unit) Tests for OCaml";
inherit (src.meta) homepage;
maintainers = with lib.maintainers; [ vbgl ];
license = lib.licenses.gpl3;
};
}