perlPackages.X11GUITest: drop pkgs.xlibsWrapper build input

Use only a subset of `pkgs.xlibsWrapper` package to define inputs.

Dropped unused library imports in NIX_CFLAGS_LINK. -lX11 should not be
present there as well, but for some reason build system does not detect
is automatically:

    perl5.36.0-X11-GUITest> Warning (mostly harmless): No library found for -lX11
This commit is contained in:
Sergei Trofimovich 2022-10-03 08:38:22 +01:00
parent fd54651f5f
commit fcc90e16ae

View file

@ -27002,8 +27002,8 @@ let
url = "mirror://cpan/authors/id/C/CT/CTRONDLP/X11-GUITest-0.28.tar.gz";
hash = "sha256-3O7eU3AGEP/xQtydXE5M0DcMiKTysTcfnL9NjYzm9ks=";
};
buildInputs = [ pkgs.xlibsWrapper pkgs.xorg.libXtst pkgs.xorg.libXi ];
NIX_CFLAGS_LINK = "-lX11 -lXext -lXtst";
buildInputs = [ pkgs.xorg.libX11 pkgs.xorg.libXi pkgs.xorg.libXt pkgs.xorg.libXtst ];
NIX_CFLAGS_LINK = "-lX11";
doCheck = false; # requires an X server
meta = {
description = "Provides GUI testing/interaction routines";