blob: 2da944e948b1b37aab889480218d01b1c99c5f1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ inputs }:
mod: orig: {
rsync =
with orig;
(rsync.override { }).overrideAttrs (old: rec {
version = "3.4.1";
src = fetchurl {
url = "mirror://samba/rsync/src/rsync-${version}.tar.gz";
hash = "sha256-KSS8s6Hti1UfwQH3QLnw/gogKxFQJ2R89phQ1l/YjFI=";
};
# configureFlags = old.configureFlags ++ [ "--disable-md2man" ];
# nativeBuildInputs = old.nativeBuildInputs ++ [ autoreconfHook ];
patches = [ ];
});
}
|