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:
2023-07-04 02:21:54 +02:00
parent 6911fffa96
commit ebdcef7180

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;