xmountains: 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
ac36151f 42cc8b68

+2 -2
+2 -2
pkgs/applications/graphics/xmountains/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, xlibsWrapper, xorg }: 1 + { lib, stdenv, fetchFromGitHub, xorg }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "xmountains"; ··· 11 11 sha256 = "0dx4n2y736lv04sj41cp1dw8n5zkw5gyd946a6zsiv0k796s9ra9"; 12 12 }; 13 13 14 - buildInputs = [ xlibsWrapper xorg.xbitmaps ]; 14 + buildInputs = [ xorg.xbitmaps xorg.libX11 ]; 15 15 nativeBuildInputs = with xorg; [ imake gccmakedep ]; 16 16 17 17 installPhase = "install -Dm755 xmountains -t $out/bin";