3
0
Fork 0
forked from mirrors/nixpkgs

ocaml-typerep: add initial version (112.24.00) to the system

This commit is contained in:
Eric Merritt 2015-05-15 09:29:35 -05:00
parent 48c98e12d2
commit e617429759
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{stdenv, buildOcaml, fetchurl, type_conv}:
buildOcaml rec {
name = "typerep";
version = "112.24.00";
minimumSupportedOcamlVersion = "4.00";
src = fetchurl {
url = "https://github.com/janestreet/typerep/archive/${version}.tar.gz";
sha256 = "4f1ab611a00aaf774e9774b26b687233e0c70d91f684415a876f094a9969eada";
};
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.ericbmerritt ];
};
}

View file

@ -4355,6 +4355,8 @@ let
twt = callPackage ../development/ocaml-modules/twt { };
typerep = callPackage ../development/ocaml-modules/typerep { };
utop = callPackage ../development/tools/ocaml/utop { };
sawja = callPackage ../development/ocaml-modules/sawja { };