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:
Alyssa Ross 2021-02-08 14:53:37 +00:00
parent 8b9ff564c7
commit 1690c5ddf8
No known key found for this signature in database
GPG Key ID: F9DBED4859B271C0

View File

@ -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";