mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
trv: fix the propagate build inputs
This commit is contained in:
parent
a452714799
commit
203e3c5292
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue