forked from mirrors/nixpkgs
30 lines
649 B
Nix
30 lines
649 B
Nix
{ lib, stdenv, fetchurl, perl, rsync, fetchpatch }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "rrsync";
|
|
inherit (rsync) version srcs;
|
|
|
|
buildInputs = [ rsync perl ];
|
|
|
|
# Skip configure and build phases.
|
|
# We just want something from the support directory
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
inherit (rsync) patches;
|
|
|
|
postPatch = ''
|
|
substituteInPlace support/rrsync --replace /usr/bin/rsync ${rsync}/bin/rsync
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp support/rrsync $out/bin
|
|
chmod a+x $out/bin/rrsync
|
|
'';
|
|
|
|
meta = rsync.meta // {
|
|
description = "A helper to run rsync-only environments from ssh-logins";
|
|
};
|
|
}
|