about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-12-28 08:08:05 +0100
committerGitHub <noreply@github.com>2022-12-28 08:08:05 +0100
commit3c9246399df09f25a0891fffa235a0d4d6ae8074 (patch)
treed9d8d8f14e41a1208b839147fa119a29acb1aebc /pkgs/development/libraries
parent66d8803cad0c2f35643799094e03daa4ef6d2f14 (diff)
parentce4b239b10a090728de4e60920f6bf4d56163424 (diff)
Merge pull request #207999 from trofi/gtk2-without-xlibsWrapper
gtk2: drop unused xlibsWrapper import
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/gtk/2.x.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gtk/2.x.nix b/pkgs/development/libraries/gtk/2.x.nix
index 396366324d3a5..3568bbfed4813 100644
--- a/pkgs/development/libraries/gtk/2.x.nix
+++ b/pkgs/development/libraries/gtk/2.x.nix
@@ -1,5 +1,5 @@
 { config, lib, substituteAll, stdenv, fetchurl, pkg-config, gettext, glib, atk, pango, cairo, perl, xorg
-, gdk-pixbuf, xlibsWrapper, gobject-introspection
+, gdk-pixbuf, gobject-introspection
 , xineramaSupport ? stdenv.isLinux
 , cupsSupport ? config.gtk2.cups or stdenv.isLinux, cups
 , gdktarget ? if stdenv.isDarwin then "quartz" else "x11"
@@ -57,7 +57,7 @@ stdenv.mkDerivation rec {
     ++ optionals (stdenv.isLinux || stdenv.isDarwin) [
          libXrandr libXrender libXcomposite libXi libXcursor
        ]
-    ++ optionals stdenv.isDarwin [ xlibsWrapper libXdamage ]
+    ++ optionals stdenv.isDarwin [ libXdamage ]
     ++ optional xineramaSupport libXinerama
     ++ optionals cupsSupport [ cups ]
     ++ optionals stdenv.isDarwin [ AppKit Cocoa ];