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

Tested as no material change in `out` output with `diffoscope`.
This commit is contained in:
Sergei Trofimovich
2022-10-29 12:09:38 +02:00
committed by Bjørn Forsman
parent 42cc8b68d8
commit ac36151fcb
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, xlibsWrapper, xorg }:
{ lib, stdenv, fetchFromGitHub, xorg }:
stdenv.mkDerivation rec {
pname = "xmountains";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "0dx4n2y736lv04sj41cp1dw8n5zkw5gyd946a6zsiv0k796s9ra9";
};
buildInputs = [ xlibsWrapper xorg.xbitmaps ];
buildInputs = [ xorg.xbitmaps xorg.libX11 ];
nativeBuildInputs = with xorg; [ imake gccmakedep ];
installPhase = "install -Dm755 xmountains -t $out/bin";