catclock: use xorg.* packages directly instead of xlibsWrapper indirection
Validated by `diffoscope`: `out` output differs only by RUNPATH libraries order.
This commit is contained in:
parent
473e97e434
commit
1c12d6decf
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, lib, fetchFromGitHub, xlibsWrapper, motif
|
{ stdenv, lib, fetchFromGitHub, motif, xorg
|
||||||
, withAudioTracking ? false, libpulseaudio, aubio }:
|
, withAudioTracking ? false, libpulseaudio, aubio }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation {
|
||||||
makeFlags = [ "DESTINATION=$(out)/bin/" ]
|
makeFlags = [ "DESTINATION=$(out)/bin/" ]
|
||||||
++ lib.optional withAudioTracking "WITH_TEMPO_TRACKER=1";
|
++ lib.optional withAudioTracking "WITH_TEMPO_TRACKER=1";
|
||||||
|
|
||||||
buildInputs = [ xlibsWrapper motif ]
|
buildInputs = [ motif xorg.libX11 xorg.libXext xorg.libXt ]
|
||||||
++ lib.optionals withAudioTracking [ libpulseaudio aubio ];
|
++ lib.optionals withAudioTracking [ libpulseaudio aubio ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue