trv: fix the propagate build inputs

This commit is contained in:
Vincent Laporte 2017-02-19 11:38:29 +00:00
parent a452714799
commit 203e3c5292

View file

@ -1,6 +1,6 @@
{stdenv, fetchFromGitHub, ocaml, findlib, camlp4, core_p4, async_p4, async_unix_p4
, re2_p4, async_extra_p4, sexplib_p4, async_shell, core_extended_p4, async_find
, cohttp, conduit, magic-mime, uri, tzdata
, cohttp, conduit, magic-mime, tzdata
}:
assert stdenv.lib.versionOlder "4.02" ocaml.version;
@ -17,10 +17,10 @@ stdenv.mkDerivation rec {
};
buildInputs = [ ocaml findlib camlp4 conduit magic-mime ];
buildInputs = [ ocaml findlib camlp4 ];
propagatedBuildInputs = [ core_p4 async_p4 async_unix_p4
async_extra_p4 sexplib_p4 async_shell core_extended_p4
async_find cohttp uri re2_p4 ];
async_find cohttp conduit magic-mime re2_p4 ];
createFindlibDestdir = true;
dontStrip = true;