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:
parent
c9f4e679cc
commit
032fd5c0c2
1 changed files with 2 additions and 2 deletions
|
@ -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 {
|
stdenv.mkDerivation rec {
|
||||||
pname = "xinput_calibrator";
|
pname = "xinput_calibrator";
|
||||||
|
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||||
preConfigure = "./autogen.sh --with-gui=X11";
|
preConfigure = "./autogen.sh --with-gui=X11";
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config autoconf automake ];
|
nativeBuildInputs = [ pkg-config autoconf automake ];
|
||||||
buildInputs = [ xorgproto libXi libtool m4 xlibsWrapper ];
|
buildInputs = [ xorgproto libXi libtool m4 xorg.libX11 xorg.libXext ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/tias/xinput_calibrator";
|
homepage = "https://github.com/tias/xinput_calibrator";
|
||||||
|
|
Loading…
Reference in a new issue