about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2022-10-28 08:50:10 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2022-10-29 12:13:19 +0200
commit0b67da19dfe24bb982965619d92d4ed73a69e0af (patch)
treecbbc760d8aa9daeb3c69f555b0f7dd9d939f5d4a /pkgs/tools
parente180a6988a85a323aab0060528bcbff6baddb426 (diff)
xwinwrap: use xorg.* packages directly instead of xlibsWrapper indirection
Tested as no material change in `out` output with `diffoscope`.
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/X11/xwinwrap/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/X11/xwinwrap/default.nix b/pkgs/tools/X11/xwinwrap/default.nix
index 3921df9fffab3..e5bc5743c28db 100644
--- a/pkgs/tools/X11/xwinwrap/default.nix
+++ b/pkgs/tools/X11/xwinwrap/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchbzr, xlibsWrapper }:
+{ lib, stdenv, fetchbzr, xorg }:
 
 stdenv.mkDerivation rec {
   pname = "xwinwrap";
@@ -11,7 +11,9 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs = [
-    xlibsWrapper
+    xorg.libX11
+    xorg.libXext
+    xorg.libXrender
   ];
 
   buildPhase = if stdenv.hostPlatform.system == "x86_64-linux" then ''