summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk
diff options
context:
space:
mode:
authorTor Hedin Brønner <torhedinbronner@gmail.com>2019-10-07 05:52:19 +0000
committerTor Hedin Brønner <torhedinbronner@gmail.com>2019-10-12 16:18:05 +0200
commit88273d47687b36bcf78e3ac67aa09224e1d015eb (patch)
tree488a1814280464ad33f090fbdfbd7fc67dc88116 /pkgs/development/libraries/gtk
parentf0b89403c475a5355e1a833561d96cc2ac1e3d6f (diff)
downloadnixpkgs-88273d47687b36bcf78e3ac67aa09224e1d015eb.tar
nixpkgs-88273d47687b36bcf78e3ac67aa09224e1d015eb.tar.gz
nixpkgs-88273d47687b36bcf78e3ac67aa09224e1d015eb.tar.bz2
nixpkgs-88273d47687b36bcf78e3ac67aa09224e1d015eb.tar.lz
nixpkgs-88273d47687b36bcf78e3ac67aa09224e1d015eb.tar.xz
nixpkgs-88273d47687b36bcf78e3ac67aa09224e1d015eb.tar.zst
nixpkgs-88273d47687b36bcf78e3ac67aa09224e1d015eb.zip
gtk3: 3.24.11 → 3.24.12
Diffstat (limited to 'pkgs/development/libraries/gtk')
-rw-r--r--pkgs/development/libraries/gtk/3.x.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/development/libraries/gtk/3.x.nix b/pkgs/development/libraries/gtk/3.x.nix
index d05c2aa57e5..4a7cf07d2e6 100644
--- a/pkgs/development/libraries/gtk/3.x.nix
+++ b/pkgs/development/libraries/gtk/3.x.nix
@@ -44,7 +44,7 @@ with stdenv.lib;
 
 stdenv.mkDerivation rec {
   pname = "gtk+3";
-  version = "3.24.11";
+  version = "3.24.12";
 
   outputs = [ "out" "dev" ];
   outputBin = "dev";
@@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "mirror://gnome/sources/gtk+/${stdenv.lib.versions.majorMinor version}/gtk+-${version}.tar.xz";
-    sha256 = "1598k357xvffbswsrvc63lyj73wq0b510lhg4vcgl6rf1a6nb9yv";
+    sha256 = "10xyyhlfb0yk4hglngxh2zsv9xrxkqv343df8h01dvagc6jyp10k";
   };
 
   patches = [
@@ -68,12 +68,6 @@ stdenv.mkDerivation rec {
     })
     # https://gitlab.gnome.org/GNOME/gtk/merge_requests/1002
     ./01-build-Fix-path-handling-in-pkgconfig.patch
-    # 3.32.11 had wrong version in .pc
-    # drop in next release
-    (fetchpatch {
-      url = "https://gitlab.gnome.org/GNOME/gtk/commit/70c4b66d99f66b9da27ded63f2c26e3c13ce07f8.patch";
-      sha256 = "0nkc3y85wp5sn8xbr7c5zcpn9gsd5zcmdhjqwpmq54jwmg07fk52";
-    })
   ] ++ optionals stdenv.isDarwin [
     # X11 module requires <gio/gdesktopappinfo.h> which is not installed on Darwin
     # let’s drop that dependency in similar way to how other parts of the library do it