nixpkgs/pkgs/development/ocaml-modules/typerep/default.nix
2015-09-02 09:14:59 +02:00

24 lines
602 B
Nix

{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 ];
};
}