My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/qcheck/core.nix

25 lines
524 B

{ lib, buildDunePackage, fetchFromGitHub }:
buildDunePackage rec {
pname = "qcheck-core";
version = "0.18";
useDune2 = true;
minimalOCamlVersion = "4.08";
src = fetchFromGitHub {
owner = "c-cube";
repo = "qcheck";
rev = "v${version}";
sha256 = "1s652hrj2sxqj30dfl300zjvvqk3r62a1bnzqw1hqyf6pi88qn8x";
};
meta = {
description = "Core qcheck library";
homepage = "https://c-cube.github.io/qcheck/";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.vbgl ];
};
}