summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/qcheck/core.nix
blob: 19f8c8cf9ac57d7c62933b81026c91a548777496 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
  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 ];
  };

})