mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
add rsync, untested
svn path=/nixpkgs/trunk/; revision=4309
This commit is contained in:
parent
b4d760228e
commit
31c615a95d
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 New Issue
Block a user