about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2022-12-06 19:24:34 +0000
committerGitHub <noreply@github.com>2022-12-06 19:24:34 +0000
commit36b4518364a31cd1e77ac1ce927941010d460675 (patch)
tree241c616d3902ec3e01a98688d0575373bc05a85b
parent51f76dc5b4d5b25b85b40df30dc652080382b521 (diff)
parent87818caa00fb98bf297c02df39270ecdd2bc0778 (diff)
Merge pull request #204689 from trofi/qt6Packages.qtwayland-without-xlibsWrapper
qt6Packages.qtwayland: drop unused xlibsWrapper
-rw-r--r--pkgs/development/libraries/qt-6/modules/qtwayland.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/libraries/qt-6/modules/qtwayland.nix b/pkgs/development/libraries/qt-6/modules/qtwayland.nix
index 3ac23d28a7983..e28cdb438e5e6 100644
--- a/pkgs/development/libraries/qt-6/modules/qtwayland.nix
+++ b/pkgs/development/libraries/qt-6/modules/qtwayland.nix
@@ -4,13 +4,12 @@
 , qtdeclarative
 , wayland
 , pkg-config
-, xlibsWrapper
 , libdrm
 }:
 
 qtModule {
   pname = "qtwayland";
   qtInputs = [ qtbase qtdeclarative ];
-  buildInputs = [ wayland xlibsWrapper libdrm ];
+  buildInputs = [ wayland libdrm ];
   nativeBuildInputs = [ pkg-config ];
 }