From 31c615a95d9cea306f3cd21b9611d69ace2c5219 Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Tue, 22 Nov 2005 22:39:09 +0000 Subject: [PATCH] add rsync, untested svn path=/nixpkgs/trunk/; revision=4309 --- pkgs/applications/networking/sync/rsync/default.nix | 9 +++++++++ pkgs/system/all-packages-generic.nix | 4 ++++ 2 files changed, 13 insertions(+) create mode 100644 pkgs/applications/networking/sync/rsync/default.nix diff --git a/pkgs/applications/networking/sync/rsync/default.nix b/pkgs/applications/networking/sync/rsync/default.nix new file mode 100644 index 000000000000..f9bbca8ddfa9 --- /dev/null +++ b/pkgs/applications/networking/sync/rsync/default.nix @@ -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"; + }; +} diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix index 93016ea33045..34c9fb4951ce 100644 --- a/pkgs/system/all-packages-generic.nix +++ b/pkgs/system/all-packages-generic.nix @@ -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; };