mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
trv: fix the propagate build inputs
This commit is contained in:
parent
a452714799
commit
203e3c5292
@ -1,6 +1,6 @@
|
|||||||
{stdenv, fetchFromGitHub, ocaml, findlib, camlp4, core_p4, async_p4, async_unix_p4
|
{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
|
, 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;
|
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
|
propagatedBuildInputs = [ core_p4 async_p4 async_unix_p4
|
||||||
async_extra_p4 sexplib_p4 async_shell core_extended_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;
|
createFindlibDestdir = true;
|
||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user