mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
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
1 changed files with 1 additions and 2 deletions
|
@ -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