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

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

26 lines
524 B
Nix
Raw Normal View History

{ lib, buildDunePackage, fetchFromGitHub }:
buildDunePackage rec {
pname = "qcheck-core";
2021-09-20 18:14:56 +02:00
version = "0.18";
2020-11-30 08:18:45 +01:00
useDune2 = true;
2021-09-20 18:14:56 +02:00
minimalOCamlVersion = "4.08";
src = fetchFromGitHub {
owner = "c-cube";
repo = "qcheck";
2021-09-20 18:14:56 +02:00
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 ];
};
}