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

This commit is contained in:
Eric Merritt 2015-05-11 19:12:05 -05:00
parent ea0d507935
commit a88b7ed908
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{stdenv, writeText, buildOcaml, fetchurl, type_conv}:
buildOcaml rec {
name = "bin_prot";
version = "112.24.00";
minimumSupportedOcamlVersion = "4.00";
src = fetchurl {
url = "https://github.com/janestreet/bin_prot/archive/${version}.tar.gz";
sha256 = "dc0c978a825c7c123990af3317637c218f61079e6f35dc878260651084f1adb4";
};
propagatedBuildInputs = [ type_conv ];
hasSharedObjects = true;
meta = with stdenv.lib; {
homepage = https://github.com/janestreet/bin_prot;
description = "Binary protocol generator ";
license = licenses.asl20;
maintainers = [ maintainers.ericbmerritt ];
};
}

View File

@ -4100,6 +4100,8 @@ let
biniou = callPackage ../development/ocaml-modules/biniou { }; biniou = callPackage ../development/ocaml-modules/biniou { };
bin_prot = callPackage ../development/ocaml-modules/bin_prot { };
ocaml_cairo = callPackage ../development/ocaml-modules/ocaml-cairo { }; ocaml_cairo = callPackage ../development/ocaml-modules/ocaml-cairo { };
ocaml_cairo2 = callPackage ../development/ocaml-modules/ocaml-cairo2 { }; ocaml_cairo2 = callPackage ../development/ocaml-modules/ocaml-cairo2 { };