add rsync, untested

svn path=/nixpkgs/trunk/; revision=4309
This commit is contained in:
Armijn Hemel 2005-11-22 22:39:09 +00:00
parent b4d760228e
commit 31c615a95d
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "rsync-2.6.6";
src = fetchurl {
url = http://rsync.samba.org/ftp/rsync/rsync-2.6.6.tar.gz;
md5 = "30c4e2849cbeae93f55548453865c2f2";
};
}

View File

@ -1634,6 +1634,10 @@ rec {
inherit (gtkLibs) glib gtk;
};
rsync = (import ../applications/networking/sync/rsync) {
inherit fetchurl stdenv;
};
cdparanoiaIII = (import ../applications/audio/cdparanoia) {
inherit fetchurl stdenv;
};