update to 3.0.7, requires perl now

svn path=/nixpkgs/trunk/; revision=19231
This commit is contained in:
Armijn Hemel 2010-01-05 12:29:58 +00:00
parent 4c2a11d516
commit ae80a8ed48
2 changed files with 6 additions and 6 deletions

View File

@ -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/;

View File

@ -7413,7 +7413,7 @@ let
});
rsync = import ../applications/networking/sync/rsync {
inherit fetchurl stdenv acl;
inherit fetchurl stdenv acl perl;
enableACLs = !stdenv.isDarwin;
};