2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-02 02:53:55 +00:00
nixpkgs/pkgs/development/ocaml-modules/qcheck/core.nix
2022-11-16 05:17:46 +01:00

24 lines
503 B
Nix

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