about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2022-10-29 08:39:03 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2022-10-29 12:15:14 +0200
commit711bc5f86c903da6ba6934cba0aa585725d95ba6 (patch)
tree0c73524cdc17e86fc194d50c9c5a78f96d56809d /pkgs/games
parentebe6f5184996ba7f30776acf1b32ba729082ecd1 (diff)
zoom: use xorg.* packages directly instead of xlibsWrapper indirection
Tested as no material change in `out` output with `diffoscope`.
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/zoom/default.nix15
1 files changed, 13 insertions, 2 deletions
diff --git a/pkgs/games/zoom/default.nix b/pkgs/games/zoom/default.nix
index e281caee72a23..818d9deda4833 100644
--- a/pkgs/games/zoom/default.nix
+++ b/pkgs/games/zoom/default.nix
@@ -3,8 +3,9 @@
 , fetchurl
 , perl
 , expat
-, xlibsWrapper
+, fontconfig
 , freetype
+, xorg
 }:
 
 # !!! assert freetype == xorg.freetype
@@ -18,7 +19,17 @@ stdenv.mkDerivation rec {
     hash = "sha256-8pZ/HAVV341K6QRDUC0UzzO2rGW2AvSZ++Pp445V27w=";
   };
 
-  buildInputs = [ perl expat xlibsWrapper freetype ];
+  buildInputs = [
+    perl
+    expat
+    fontconfig
+    freetype
+    xorg.libICE
+    xorg.libSM
+    xorg.libX11
+    xorg.libXext
+    xorg.libXrender
+  ];
 
   NIX_CFLAGS_COMPILE = "-I${freetype}/include/freetype2 -fgnu89-inline";