summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet/variantslib.nix
blob: 053ab412f88ddd16656963bf4bfd70a974a5669c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{lib, buildOcamlJane, type_conv}:

buildOcamlJane {
  name = "variantslib";
  version = "113.33.03";

  minimumSupportedOcamlVersion = "4.00";

  hash = "1hv0f75msrryxsl6wfnbmhc0n8kf7qxs5f82ry3b8ldb44s3wigp";

  propagatedBuildInputs = [ type_conv ];

  meta = with lib; {
    homepage = "https://github.com/janestreet/variantslib";
    description = "OCaml variants as first class values";
    license = licenses.asl20;
    maintainers = [ maintainers.maurer maintainers.ericbmerritt ];
  };
}