summary refs log tree commit diff
path: root/pkgs/development/libraries/gdk-pixbuf
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-10-18 09:07:20 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-10-18 09:07:20 +0200
commite8961181ea470b90de11ff5bc89affe03f543146 (patch)
treeab6a38e30a3429664b0baf8d6780951657ca0899 /pkgs/development/libraries/gdk-pixbuf
parente58996cba1f40760b8454af212523b4d8e89b52b (diff)
downloadnixlib-e8961181ea470b90de11ff5bc89affe03f543146.tar
nixlib-e8961181ea470b90de11ff5bc89affe03f543146.tar.gz
nixlib-e8961181ea470b90de11ff5bc89affe03f543146.tar.bz2
nixlib-e8961181ea470b90de11ff5bc89affe03f543146.tar.lz
nixlib-e8961181ea470b90de11ff5bc89affe03f543146.tar.xz
nixlib-e8961181ea470b90de11ff5bc89affe03f543146.tar.zst
nixlib-e8961181ea470b90de11ff5bc89affe03f543146.zip
gdk-pixbuf: security update 2.32.0 -> 2.32.1
CVE-2015-7674, fixes #10441.
Diffstat (limited to 'pkgs/development/libraries/gdk-pixbuf')
-rw-r--r--pkgs/development/libraries/gdk-pixbuf/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gdk-pixbuf/default.nix b/pkgs/development/libraries/gdk-pixbuf/default.nix
index 0971df78e667..daa674905330 100644
--- a/pkgs/development/libraries/gdk-pixbuf/default.nix
+++ b/pkgs/development/libraries/gdk-pixbuf/default.nix
@@ -3,14 +3,14 @@
 
 let
   ver_maj = "2.32";
-  ver_min = "0";
+  ver_min = "1";
 in
 stdenv.mkDerivation rec {
   name = "gdk-pixbuf-${ver_maj}.${ver_min}";
 
   src = fetchurl {
     url = "mirror://gnome/sources/gdk-pixbuf/${ver_maj}/${name}.tar.xz";
-    sha256 = "0rqvj5gcs2zfyyg9llm289b0xkj4mrhzxfjpjja0wx1m6vn5axjk";
+    sha256 = "1g7kjxv67jcdasi14n7jan4icrnnppd1m99wrdmpv32k4m7vfcj4";
   };
 
   setupHook = ./setup-hook.sh;