ocamlPackages.ppx_sexp_value: init at 113.33.00+4.03

This commit is contained in:
Vincent Laporte
2017-02-26 15:29:29 +00:00
parent 03be79a018
commit 3c2c608c2e
2 changed files with 25 additions and 1 deletions

View File

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