about summary refs log tree commit diff
path: root/pkgs/applications/graphics/xmountains
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2022-10-28 08:29:41 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2022-10-29 12:09:38 +0200
commitac36151fcbb8d28219a1262512c8d2d1529b59d5 (patch)
tree452ab482a82614871e0f3ec2a7fad60b3a8a0548 /pkgs/applications/graphics/xmountains
parent42cc8b68d8ced21cfdbb73ac253bf30d4e9c8cdb (diff)
xmountains: use xorg.* packages directly instead of xlibsWrapper indirection
Tested as no material change in `out` output with `diffoscope`.
Diffstat (limited to 'pkgs/applications/graphics/xmountains')
-rw-r--r--pkgs/applications/graphics/xmountains/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/xmountains/default.nix b/pkgs/applications/graphics/xmountains/default.nix
index c31f7923c9901..61020e678c307 100644
--- a/pkgs/applications/graphics/xmountains/default.nix
+++ b/pkgs/applications/graphics/xmountains/default.nix
@@ -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";