nixpkgs/pkgs/development/ocaml-modules/qcheck/core.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
556 B
Nix
Raw Normal View History

{ lib, buildDunePackage, fetchFromGitHub }:
buildDunePackage rec {
pname = "qcheck-core";
2022-11-09 09:11:01 +00:00
version = "0.20";
2021-09-20 16:14:56 +00:00
minimalOCamlVersion = "4.08";
duneVersion = "3";
src = fetchFromGitHub {
owner = "c-cube";
repo = "qcheck";
2021-09-20 16:14:56 +00:00
rev = "v${version}";
2022-11-09 09:11:01 +00:00
sha256 = "sha256-d3gleiaPEDJTbHtieL4oAq1NlA/0NtzdW9SA1sItFeQ=";
};
patches = [ ./bytes.patch ];
meta = {
description = "Core qcheck library";
homepage = "https://c-cube.github.io/qcheck/";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.vbgl ];
};
}