rrsync: correct meta.mainProgram

rrsync.meta inherits from rsync.meta, so #248417 had the effect of
setting rrsync.meta.mainProgram to "rsync", which doesn’t exist:

    /nix/store/…-rrsync-3.3.0/bin/rsync: No such file or directory

Re #298509
This commit is contained in:
Andrew Kvalheim
2024-10-27 22:22:18 +01:00
committed by Bjørn Forsman
parent abeee0450f
commit a9a25431c3
@@ -27,5 +27,6 @@ stdenv.mkDerivation {
meta = rsync.meta // {
description = "Helper to run rsync-only environments from ssh-logins";
mainProgram = "rrsync";
};
}