summary refs log tree commit diff
path: root/pkgs/applications/networking/sync/rsync/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/sync/rsync/default.nix')
-rw-r--r--pkgs/applications/networking/sync/rsync/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/networking/sync/rsync/default.nix b/pkgs/applications/networking/sync/rsync/default.nix
index 006effdef24..3c84ee56a68 100644
--- a/pkgs/applications/networking/sync/rsync/default.nix
+++ b/pkgs/applications/networking/sync/rsync/default.nix
@@ -1,18 +1,18 @@
-{ stdenv, fetchurl
+{ stdenv, fetchurl, perl
 , enableACLs ? true, acl ? null
 }:
 
 assert enableACLs -> acl != null;
 
 stdenv.mkDerivation {
-  name = "rsync-3.0.6";
+  name = "rsync-3.0.7";
   
   src = fetchurl {
-    url = http://rsync.samba.org/ftp/rsync/src/rsync-3.0.6.tar.gz;
-    sha256 = "1cz1adlshjwwi41yqhw7wph7vq58a73b4zgs8piv6rnbcj9rdk1k";
+    url = http://rsync.samba.org/ftp/rsync/src/rsync-3.0.7.tar.gz;
+    sha256 = "1j77vwz6q3dvgr8w6wvigd5v4m5952czaqdvihr8di13q0b0vq4y";
   };
 
-  buildInputs = stdenv.lib.optional enableACLs acl;
+  buildInputs = [perl] ++ stdenv.lib.optional enableACLs acl;
 
   meta = {
     homepage = http://samba.anu.edu.au/rsync/;