Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2dca619a073c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f203d50d0905
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 19, 2019

  1. 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
    61bc03c.
    
    Resolves #71198
    ryanfitzsimon authored and c0bw3b committed Oct 19, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    thoughtpolice Austin Seipp
    Copy the full SHA
    f203d50 View commit details
Showing with 1 addition and 2 deletions.
  1. +1 −2 pkgs/applications/networking/sync/rsync/rrsync.nix
3 changes: 1 addition & 2 deletions pkgs/applications/networking/sync/rsync/rrsync.nix
Original file line number Diff line number Diff line change
@@ -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