ocamlPackages.ppx_custom_printf: init at 113.33.00+4.03

This commit is contained in:
Vincent Laporte
2017-02-26 12:12:58 +00:00
parent 654dd0aa96
commit c4e5f18631
2 changed files with 25 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg
, ppx_sexp_conv
}:
stdenv.mkDerivation {
name = "ocaml${ocaml.version}-ppx_custom_printf-113.33.00+4.03";
src = fetchurl {
url = http://ocaml.janestreet.com/ocaml-core/113.33/files/ppx_custom_printf-113.33.00+4.03.tar.gz;
sha256 = "1hw8q4x0hzyg3brlqpdm0bc7z6lnj6qymzw123cf51q9dq0386jb";
};
buildInputs = [ ocaml findlib ocamlbuild opam ];
propagatedBuildInputs = [ ppx_sexp_conv ];
inherit (topkg) installPhase;
meta = {
license = stdenv.lib.licenses.asl20;
inherit (ocaml.meta) platforms;
};
}