lol

xwinwrap: use xorg.* packages directly instead of xlibsWrapper indirection

Tested as no material change in `out` output with `diffoscope`.

authored by

Sergei Trofimovich and committed by
Bjørn Forsman
0b67da19 e180a698

+4 -2
+4 -2
pkgs/tools/X11/xwinwrap/default.nix
··· 1 - { lib, stdenv, fetchbzr, xlibsWrapper }: 2 3 stdenv.mkDerivation rec { 4 pname = "xwinwrap"; ··· 11 }; 12 13 buildInputs = [ 14 - xlibsWrapper 15 ]; 16 17 buildPhase = if stdenv.hostPlatform.system == "x86_64-linux" then ''
··· 1 + { lib, stdenv, fetchbzr, xorg }: 2 3 stdenv.mkDerivation rec { 4 pname = "xwinwrap"; ··· 11 }; 12 13 buildInputs = [ 14 + xorg.libX11 15 + xorg.libXext 16 + xorg.libXrender 17 ]; 18 19 buildPhase = if stdenv.hostPlatform.system == "x86_64-linux" then ''