add rsync, untested
svn path=/nixpkgs/trunk/; revision=4309
This commit is contained in:
parent
b4d760228e
commit
31c615a95d
2 changed files with 13 additions and 0 deletions
9
pkgs/applications/networking/sync/rsync/default.nix
Normal file
9
pkgs/applications/networking/sync/rsync/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue