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

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

  minimumSupportedOcamlVersion = "4.00";

  hash = "1hv0f75msrryxsl6wfnbmhc0n8kf7qxs5f82ry3b8ldb44s3wigp";

  propagatedBuildInputs = [ type_conv ];

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