summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorLinus Heckemann <git@sphalerite.org>2023-12-20 10:27:59 +0000
committerGitHub <noreply@github.com>2023-12-20 10:27:59 +0000
commit3dfe4476be1e8773279957b6a794bb7a3772ce2b (patch)
treee7695527537361e250a20c92874381e57742103f /pkgs/development/libraries
parent178cd09cc15863738c2ba79b19287ea8c68d2127 (diff)
parent2b122abc406018898e143985d5fe92dc20f4dee9 (diff)
Merge pull request #270266 from SuperSandro2000/plasma-gtk2-gone
Remove GTK2 from a typical plasma installation
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/aqbanking/gwenhywfar.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/aqbanking/gwenhywfar.nix b/pkgs/development/libraries/aqbanking/gwenhywfar.nix
index e6b535ffe4cf..4f2326b007a5 100644
--- a/pkgs/development/libraries/aqbanking/gwenhywfar.nix
+++ b/pkgs/development/libraries/aqbanking/gwenhywfar.nix
@@ -2,7 +2,7 @@
, which
# GUI support
-, gtk2, gtk3, qt5
+, gtk3, qt5
, pluginSearchPaths ? [
"/run/current-system/sw/lib/gwenhywfar/plugins"
@@ -27,7 +27,7 @@ in stdenv.mkDerivation rec {
];
preConfigure = ''
- configureFlagsArray+=("--with-guis=gtk2 gtk3 qt5")
+ configureFlagsArray+=("--with-guis=gtk3 qt5")
'';
postPatch = let
@@ -55,7 +55,7 @@ in stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config gettext which ];
- buildInputs = [ gtk2 gtk3 qt5.qtbase gnutls openssl libgcrypt libgpg-error ];
+ buildInputs = [ gtk3 qt5.qtbase gnutls openssl libgcrypt libgpg-error ];
dontWrapQtApps = true;