ocamlPackages.ipaddr: remove spurious dependency to camlp4
This commit is contained in:
parent
0c085fd034
commit
ba612369e7
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue