nixpkgs/pkgs/applications/networking/sync/rsync/default.nix

10 lines
203 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "rsync-2.6.6";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/rsync-2.6.6.tar.gz;
md5 = "30c4e2849cbeae93f55548453865c2f2";
};
}