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

Validated by `diffoscope`: `out` output differs only by RUNPATH
libraries order.

+2 -2
+2 -2
pkgs/applications/misc/catclock/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, xlibsWrapper, motif 1 + { stdenv, lib, fetchFromGitHub, motif, xorg 2 2 , withAudioTracking ? false, libpulseaudio, aubio }: 3 3 4 4 stdenv.mkDerivation { ··· 21 21 makeFlags = [ "DESTINATION=$(out)/bin/" ] 22 22 ++ lib.optional withAudioTracking "WITH_TEMPO_TRACKER=1"; 23 23 24 - buildInputs = [ xlibsWrapper motif ] 24 + buildInputs = [ motif xorg.libX11 xorg.libXext xorg.libXt ] 25 25 ++ lib.optionals withAudioTracking [ libpulseaudio aubio ]; 26 26 27 27 meta = with lib; {