summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-12-30 12:06:00 +0100
committerVladimír Čunát <vcunat@gmail.com>2015-12-30 12:06:00 +0100
commit468f698f609e123bb0ffae67181d07ac99eb2204 (patch)
treeb1552686ae808167f91679f9376bcbdbd74776d0 /pkgs
parent8627b268746aebd2fda1f386647e5ff12bcfee95 (diff)
downloadnixpkgs-468f698f609e123bb0ffae67181d07ac99eb2204.tar
nixpkgs-468f698f609e123bb0ffae67181d07ac99eb2204.tar.gz
nixpkgs-468f698f609e123bb0ffae67181d07ac99eb2204.tar.bz2
nixpkgs-468f698f609e123bb0ffae67181d07ac99eb2204.tar.lz
nixpkgs-468f698f609e123bb0ffae67181d07ac99eb2204.tar.xz
nixpkgs-468f698f609e123bb0ffae67181d07ac99eb2204.tar.zst
nixpkgs-468f698f609e123bb0ffae67181d07ac99eb2204.zip
rsync: security update 3.1.1 -> 3.1.2
This should fix CVE-2014-9512.
https://download.samba.org/pub/rsync/src/rsync-3.1.2-NEWS
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/sync/rsync/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/sync/rsync/default.nix b/pkgs/applications/networking/sync/rsync/default.nix
index 5e09beb4c47..c13bb1b329d 100644
--- a/pkgs/applications/networking/sync/rsync/default.nix
+++ b/pkgs/applications/networking/sync/rsync/default.nix
@@ -7,18 +7,18 @@ assert enableACLs -> acl != null;
 
 stdenv.mkDerivation rec {
   name = "rsync-${version}";
-  version = "3.1.1";
+  version = "3.1.2";
 
   mainSrc = fetchurl {
     # signed with key 0048 C8B0 26D4 C96F 0E58  9C2F 6C85 9FB1 4B96 A8C5
     url = "mirror://samba/rsync/src/rsync-${version}.tar.gz";
-    sha256 = "0896iah6w72q5izpxgkai75bn40dqkqifi2ivcxjzr2zrx7kdr3x";
+    sha256 = "1hm1q04hz15509f0p9bflw4d6jzfvpm1d36dxjwihk1wzakn5ypc";
   };
 
   patchesSrc = fetchurl {
     # signed with key 0048 C8B0 26D4 C96F 0E58  9C2F 6C85 9FB1 4B96 A8C5
     url = "mirror://samba/rsync/rsync-patches-${version}.tar.gz";
-    sha256 = "0iij996xbyn20yr4w3kv3rw3cx4jwkg2k85x6w5hb5xlgsis8zjl";
+    sha256 = "09i3dcl37p22dp75vlnsvx7bm05ggafnrf1zwhf2kbij4ngvxvpd";
   };
 
   srcs = [mainSrc] ++ stdenv.lib.optional enableCopyDevicesPatch patchesSrc;