nixpkgs/pkgs/applications/networking/sync/rsync/default.nix
Armijn Hemel f7faaf75f7 upgrade to 2.6.8 (security fixes, other bugfixes)
svn path=/nixpkgs/trunk/; revision=5610
2006-07-06 15:48:34 +00:00

10 lines
202 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "rsync-2.6.8";
src = fetchurl {
url = http://rsync.samba.org/ftp/rsync/rsync-2.6.8.tar.gz;
md5 = "082a9dba1f741e6591e5cd748a1233de";
};
}