Files
nixpkgs/pkgs/development/ocaml-modules/qcheck/core.nix
T
2025-12-26 16:30:52 +00:00

30 lines
557 B
Nix

{
lib,
buildDunePackage,
fetchFromGitHub,
alcotest,
}:
buildDunePackage (finalAttrs: {
pname = "qcheck-core";
version = "0.91";
src = fetchFromGitHub {
owner = "c-cube";
repo = "qcheck";
tag = "v${finalAttrs.version}";
hash = "sha256-ToF+bRbiq1P5YaGOKiW//onJDhxaxmnaz9/JbJ82OWM=";
};
doCheck = true;
checkInputs = [ alcotest ];
meta = {
description = "Core qcheck library";
homepage = "https://c-cube.github.io/qcheck/";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.vbgl ];
};
})