Avoid pointless propagatedBuildInputs

It suffices for Perl to be in buildInputs
for json-format.pl's hashbang to get fixed up.
This commit is contained in:
Přemysl Eric Janouch 2023-07-04 02:21:54 +02:00
parent 6911fffa96
commit ebdcef7180
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 1 additions and 4 deletions

View File

@ -18,16 +18,13 @@ pkgs.stdenv.mkDerivation rec {
jansson
curl
libev
perl
] ++ lib.optionals full [
readline
] ++ lib.optionals (!full) [
libedit
];
propagatedBuildInputs = with pkgs; [
perl
];
src = if local then
builtins.path {
path = ../${pname}/git;