Unverified Commit b4a09f1f authored by Alyssa Ross's avatar Alyssa Ross
Browse files

pipewire: disable ldac when unavailable

ldacbt only supports little endian platforms.

This was mistakenly made unconditional when the ldacbtSupport option
was removed.  (It used to check availability in its default value.)

Fixes: 3cf28607 ("pipewire: remove superfluous args")
parent fcb437c6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -160,7 +160,7 @@ stdenv.mkDerivation(finalAttrs: {
    # source code is not easily obtainable
    (lib.mesonEnable "bluez5-codec-lc3plus" false)
    (lib.mesonEnable "bluez5-codec-lc3" true)
    (lib.mesonEnable "bluez5-codec-ldac" true)
    (lib.mesonEnable "bluez5-codec-ldac" (lib.meta.availableOn stdenv.hostPlatform ldacbt))
    (lib.mesonEnable "opus" true)
    (lib.mesonOption "sysconfdir" "/etc")
    (lib.mesonEnable "raop" raopSupport)