xinput_calibrator: 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 09:26:05 +01:00 committed by Bjørn Forsman
parent c9f4e679cc
commit 032fd5c0c2

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, libXi, xorgproto, autoconf, automake, libtool, m4, xlibsWrapper, pkg-config }:
{ lib, stdenv, fetchFromGitHub, libXi, xorgproto, autoconf, automake, libtool, m4, pkg-config, xorg }:
stdenv.mkDerivation rec {
pname = "xinput_calibrator";
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
preConfigure = "./autogen.sh --with-gui=X11";
nativeBuildInputs = [ pkg-config autoconf automake ];
buildInputs = [ xorgproto libXi libtool m4 xlibsWrapper ];
buildInputs = [ xorgproto libXi libtool m4 xorg.libX11 xorg.libXext ];
meta = {
homepage = "https://github.com/tias/xinput_calibrator";