1 { stdenv, python3, rsync }:
5 inherit (rsync) version src;
9 (python3.withPackages (pythonPackages: with pythonPackages; [ braceexpand ]))
11 # Skip configure and build phases.
12 # We just want something from the support directory
16 inherit (rsync) patches;
19 substituteInPlace support/rrsync --replace /usr/bin/rsync ${rsync}/bin/rsync
24 cp support/rrsync $out/bin
25 chmod a+x $out/bin/rrsync
28 meta = rsync.meta // {
29 description = "A helper to run rsync-only environments from ssh-logins";