ocamlPackages.ipaddr: remove spurious dependency to camlp4

This commit is contained in:
Vincent Laporte 2018-07-14 08:26:39 +00:00
parent 0c085fd034
commit ba612369e7
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -1,9 +1,9 @@
{ stdenv, buildOcaml, fetchurl, ocamlbuild, findlib
{ stdenv, fetchurl, ocaml, ocamlbuild, findlib
, jbuilder, sexplib, ppx_sexp_conv
}:
buildOcaml rec {
name = "ipaddr";
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-ipaddr-${version}";
version = "2.8.0";
src = fetchurl {
@ -11,7 +11,7 @@ buildOcaml rec {
sha256 = "1amb1pbm9ybpxy6190qygpj6nmbzzs2r6vx4xh5r6v89szx9rfxw";
};
buildInputs = [ findlib ocamlbuild jbuilder ];
buildInputs = [ ocaml findlib ocamlbuild jbuilder ];
propagatedBuildInputs = [ ppx_sexp_conv sexplib ];
inherit (jbuilder) installPhase;