mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
Revert "alsa-plugins: don't build with libjack2 support when cross-compiling"
This reverts commit 033cfcce15
, which is
no longer necessary because libjack2 can now be cross-compiled.
This commit is contained in:
parent
8b9ff564c7
commit
1690c5ddf8
@ -15,8 +15,7 @@ stdenv.mkDerivation rec {
|
||||
buildInputs =
|
||||
[ alsaLib libogg ]
|
||||
++ lib.optional (libpulseaudio != null) libpulseaudio
|
||||
# https://github.com/NixOS/nixpkgs/issues/96548
|
||||
++ lib.optional (libjack2 != null && (stdenv.buildPlatform == stdenv.hostPlatform)) libjack2;
|
||||
++ lib.optional (libjack2 != null) libjack2;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Various plugins for ALSA";
|
||||
|
Loading…
Reference in New Issue
Block a user