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>2017-08-14 09:15:10 +0200
committerVladimír Čunát <vcunat@gmail.com>2017-08-14 09:15:46 +0200
commit26b7edae2b846cc21bd93542211172de28f2d9ac (patch)
treee867324127ce63b3d5ef06cfc7c18ae45f32908a /pkgs/development/libraries/gdk-pixbuf
parentb04a77a1d4f63b82e0babb57435e3c2f67be2dfb (diff)
downloadnixlib-26b7edae2b846cc21bd93542211172de28f2d9ac.tar
nixlib-26b7edae2b846cc21bd93542211172de28f2d9ac.tar.gz
nixlib-26b7edae2b846cc21bd93542211172de28f2d9ac.tar.bz2
nixlib-26b7edae2b846cc21bd93542211172de28f2d9ac.tar.lz
nixlib-26b7edae2b846cc21bd93542211172de28f2d9ac.tar.xz
nixlib-26b7edae2b846cc21bd93542211172de28f2d9ac.tar.zst
nixlib-26b7edae2b846cc21bd93542211172de28f2d9ac.zip
gdk-pixbuf: downgrade a bit for now
Updating higher will be tricky.
Diffstat (limited to 'pkgs/development/libraries/gdk-pixbuf')
-rw-r--r--pkgs/development/libraries/gdk-pixbuf/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gdk-pixbuf/default.nix b/pkgs/development/libraries/gdk-pixbuf/default.nix
index 906822b40f3a..38c1b6197a5f 100644
--- a/pkgs/development/libraries/gdk-pixbuf/default.nix
+++ b/pkgs/development/libraries/gdk-pixbuf/default.nix
@@ -3,14 +3,16 @@
 
 let
   ver_maj = "2.36";
-  ver_min = "8";
+  ver_min = "7";
+  # TODO: since 2.36.8 gdk-pixbuf gets configured to use mime-type sniffing,
+  # which apparently requires access to shared_mime_info files during runtime.
 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 = "5d68e5283cdc0bf9bda99c3e6a1d52ad07a03364fa186b6c26cfc86fcd396a19";
+    sha256 = "1b6e5eef09d98f05f383014ecd3503e25dfb03d7e5b5f5904e5a65b049a6a4d8";
   };
 
   outputs = [ "out" "dev" "devdoc" ];