forked from mirrors/nixpkgs
rrsync: Make perl a run-time dependency (#71344)
perl is a run-time dependency, so it should be in buildInputs rather
than nativeBuildInputs.
This has been preventing patchShebangsAuto() in fixupOutputHooks from
patching the /usr/bin/perl interpreter shebang in $out/bin/rrsync since
61bc03c017
.
Resolves #71198
This commit is contained in:
parent
2dca619a07
commit
f203d50d09
|
@ -8,8 +8,7 @@ stdenv.mkDerivation {
|
|||
|
||||
src = base.src;
|
||||
|
||||
buildInputs = [ rsync ];
|
||||
nativeBuildInputs = [perl];
|
||||
buildInputs = [ rsync perl ];
|
||||
|
||||
# Skip configure and build phases.
|
||||
# We just want something from the support directory
|
||||
|
|
Loading…
Reference in a new issue