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

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

  minimumSupportedOcamlVersion = "4.00";

  hash = "1ss34nq20vfgx8hwi5sswpmn3my9lvrpdy5dkng746xchwi33ar7";

  propagatedBuildInputs = [ type_conv ];

  meta = with stdenv.lib; {
    homepage = https://github.com/janestreet/typerep;
    description = "Runtime types for OCaml (beta version)";
    license = licenses.asl20;
    maintainers = [ maintainers.maurer maintainers.ericbmerritt ];
  };

}