lol

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

+3 -3
+3 -3
pkgs/applications/networking/sync/rsync/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 name = "rsync-${version}"; 10 - version = "3.1.1"; 10 + version = "3.1.2"; 11 11 12 12 mainSrc = fetchurl { 13 13 # signed with key 0048 C8B0 26D4 C96F 0E58 9C2F 6C85 9FB1 4B96 A8C5 14 14 url = "mirror://samba/rsync/src/rsync-${version}.tar.gz"; 15 - sha256 = "0896iah6w72q5izpxgkai75bn40dqkqifi2ivcxjzr2zrx7kdr3x"; 15 + sha256 = "1hm1q04hz15509f0p9bflw4d6jzfvpm1d36dxjwihk1wzakn5ypc"; 16 16 }; 17 17 18 18 patchesSrc = fetchurl { 19 19 # signed with key 0048 C8B0 26D4 C96F 0E58 9C2F 6C85 9FB1 4B96 A8C5 20 20 url = "mirror://samba/rsync/rsync-patches-${version}.tar.gz"; 21 - sha256 = "0iij996xbyn20yr4w3kv3rw3cx4jwkg2k85x6w5hb5xlgsis8zjl"; 21 + sha256 = "09i3dcl37p22dp75vlnsvx7bm05ggafnrf1zwhf2kbij4ngvxvpd"; 22 22 }; 23 23 24 24 srcs = [mainSrc] ++ stdenv.lib.optional enableCopyDevicesPatch patchesSrc;