mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
pipewire: remove superfluous args
This commit is contained in:
parent
3c247e4d29
commit
3cf28607c1
|
@ -5,7 +5,6 @@
|
|||
, meson
|
||||
, ninja
|
||||
, systemd
|
||||
, enableSystemd ? true
|
||||
, pkg-config
|
||||
, docutils
|
||||
, doxygen
|
||||
|
@ -15,7 +14,6 @@
|
|||
, alsa-lib
|
||||
, libjack2
|
||||
, libusb1
|
||||
, udev
|
||||
, libsndfile
|
||||
, vulkanSupport ? true
|
||||
, vulkan-headers
|
||||
|
@ -27,52 +25,35 @@
|
|||
, lilv
|
||||
, makeFontsConf
|
||||
, nixosTests
|
||||
, withValgrind ? lib.meta.availableOn stdenv.hostPlatform valgrind
|
||||
, valgrind
|
||||
, libcameraSupport ? true
|
||||
, libcamera
|
||||
, libdrm
|
||||
, gstreamerSupport ? true
|
||||
, gst_all_1
|
||||
, ffmpegSupport ? true
|
||||
, ffmpeg
|
||||
, bluezSupport ? true
|
||||
, bluez
|
||||
, sbc
|
||||
, libfreeaptx
|
||||
, liblc3
|
||||
, fdk_aac
|
||||
, libopus
|
||||
, ldacbtSupport ? bluezSupport && lib.meta.availableOn stdenv.hostPlatform ldacbt
|
||||
, ldacbt
|
||||
, nativeHspSupport ? true
|
||||
, nativeHfpSupport ? true
|
||||
, nativeModemManagerSupport ? true
|
||||
, modemmanager
|
||||
, ofonoSupport ? true
|
||||
, hsphfpdSupport ? true
|
||||
, pulseTunnelSupport ? true
|
||||
, libpulseaudio
|
||||
, zeroconfSupport ? true
|
||||
, avahi
|
||||
, raopSupport ? true
|
||||
, openssl
|
||||
, opusSupport ? true
|
||||
, rocSupport ? true
|
||||
, roc-toolkit
|
||||
, x11Support ? true
|
||||
, libcanberra
|
||||
, xorg
|
||||
, mysofaSupport ? true
|
||||
, libmysofa
|
||||
, ffadoSupport ? x11Support && lib.systems.equals stdenv.buildPlatform stdenv.hostPlatform
|
||||
, ffado
|
||||
, libselinux
|
||||
}:
|
||||
|
||||
# Bluetooth codec only makes sense if general bluetooth enabled
|
||||
assert ldacbtSupport -> bluezSupport;
|
||||
|
||||
stdenv.mkDerivation(finalAttrs: {
|
||||
pname = "pipewire";
|
||||
version = "1.2.1";
|
||||
|
@ -115,35 +96,41 @@ stdenv.mkDerivation(finalAttrs: {
|
|||
|
||||
buildInputs = [
|
||||
alsa-lib
|
||||
bluez
|
||||
dbus
|
||||
fdk_aac
|
||||
ffmpeg
|
||||
glib
|
||||
gst_all_1.gst-plugins-base
|
||||
gst_all_1.gstreamer
|
||||
libcamera
|
||||
libjack2
|
||||
libfreeaptx
|
||||
liblc3
|
||||
libmysofa
|
||||
libopus
|
||||
libpulseaudio
|
||||
libusb1
|
||||
libselinux
|
||||
libsndfile
|
||||
lilv
|
||||
modemmanager
|
||||
ncurses
|
||||
readline
|
||||
] ++ (if enableSystemd then [ systemd ] else [ udev ])
|
||||
sbc
|
||||
systemd
|
||||
]
|
||||
++ (if lib.meta.availableOn stdenv.hostPlatform webrtc-audio-processing_1 then [ webrtc-audio-processing_1 ] else [ webrtc-audio-processing ])
|
||||
++ lib.optionals gstreamerSupport [ gst_all_1.gst-plugins-base gst_all_1.gstreamer ]
|
||||
++ lib.optionals libcameraSupport [ libcamera ]
|
||||
++ lib.optional ffmpegSupport ffmpeg
|
||||
++ lib.optionals bluezSupport [ bluez libfreeaptx liblc3 sbc fdk_aac libopus ]
|
||||
++ lib.optional ldacbtSupport ldacbt
|
||||
++ lib.optional nativeModemManagerSupport modemmanager
|
||||
++ lib.optional opusSupport libopus
|
||||
++ lib.optional pulseTunnelSupport libpulseaudio
|
||||
++ lib.optional (lib.meta.availableOn stdenv.hostPlatform ldacbt) ldacbt
|
||||
++ lib.optional zeroconfSupport avahi
|
||||
++ lib.optional raopSupport openssl
|
||||
++ lib.optional rocSupport roc-toolkit
|
||||
++ lib.optionals vulkanSupport [ libdrm vulkan-headers vulkan-loader ]
|
||||
++ lib.optionals x11Support [ libcanberra xorg.libX11 xorg.libXfixes ]
|
||||
++ lib.optional mysofaSupport libmysofa
|
||||
++ lib.optional ffadoSupport ffado;
|
||||
|
||||
# Valgrind binary is required for running one optional test.
|
||||
nativeCheckInputs = lib.optional withValgrind valgrind;
|
||||
nativeCheckInputs = lib.optional (lib.meta.availableOn stdenv.hostPlatform valgrind) valgrind;
|
||||
|
||||
mesonFlags = [
|
||||
(lib.mesonEnable "docs" true)
|
||||
|
@ -151,28 +138,29 @@ stdenv.mkDerivation(finalAttrs: {
|
|||
(lib.mesonEnable "installed_tests" true)
|
||||
(lib.mesonOption "installed_test_prefix" (placeholder "installedTests"))
|
||||
(lib.mesonOption "libjack-path" "${placeholder "jack"}/lib")
|
||||
(lib.mesonEnable "libcamera" libcameraSupport)
|
||||
(lib.mesonEnable "libcamera" true)
|
||||
(lib.mesonEnable "libffado" ffadoSupport)
|
||||
(lib.mesonEnable "roc" rocSupport)
|
||||
(lib.mesonEnable "libpulse" pulseTunnelSupport)
|
||||
(lib.mesonEnable "libpulse" true)
|
||||
(lib.mesonEnable "avahi" zeroconfSupport)
|
||||
(lib.mesonEnable "gstreamer" gstreamerSupport)
|
||||
(lib.mesonEnable "systemd" enableSystemd)
|
||||
(lib.mesonEnable "systemd-system-service" enableSystemd)
|
||||
(lib.mesonEnable "udev" (!enableSystemd))
|
||||
(lib.mesonEnable "ffmpeg" ffmpegSupport)
|
||||
(lib.mesonEnable "pw-cat-ffmpeg" ffmpegSupport)
|
||||
(lib.mesonEnable "bluez5" bluezSupport)
|
||||
(lib.mesonEnable "bluez5-backend-hsp-native" nativeHspSupport)
|
||||
(lib.mesonEnable "bluez5-backend-hfp-native" nativeHfpSupport)
|
||||
(lib.mesonEnable "bluez5-backend-native-mm" nativeModemManagerSupport)
|
||||
(lib.mesonEnable "bluez5-backend-ofono" ofonoSupport)
|
||||
(lib.mesonEnable "bluez5-backend-hsphfpd" hsphfpdSupport)
|
||||
(lib.mesonEnable "gstreamer" true)
|
||||
(lib.mesonEnable "gstreamer-device-provider" true)
|
||||
(lib.mesonEnable "systemd" true)
|
||||
(lib.mesonEnable "systemd-system-service" true)
|
||||
(lib.mesonEnable "udev" false)
|
||||
(lib.mesonEnable "ffmpeg" true)
|
||||
(lib.mesonEnable "pw-cat-ffmpeg" true)
|
||||
(lib.mesonEnable "bluez5" true)
|
||||
(lib.mesonEnable "bluez5-backend-hsp-native" true)
|
||||
(lib.mesonEnable "bluez5-backend-hfp-native" true)
|
||||
(lib.mesonEnable "bluez5-backend-native-mm" true)
|
||||
(lib.mesonEnable "bluez5-backend-ofono" true)
|
||||
(lib.mesonEnable "bluez5-backend-hsphfpd" true)
|
||||
# source code is not easily obtainable
|
||||
(lib.mesonEnable "bluez5-codec-lc3plus" false)
|
||||
(lib.mesonEnable "bluez5-codec-lc3" bluezSupport)
|
||||
(lib.mesonEnable "bluez5-codec-ldac" ldacbtSupport)
|
||||
(lib.mesonEnable "opus" opusSupport)
|
||||
(lib.mesonEnable "bluez5-codec-lc3" true)
|
||||
(lib.mesonEnable "bluez5-codec-ldac" true)
|
||||
(lib.mesonEnable "opus" true)
|
||||
(lib.mesonOption "sysconfdir" "/etc")
|
||||
(lib.mesonEnable "raop" raopSupport)
|
||||
(lib.mesonOption "session-managers" "")
|
||||
|
@ -180,7 +168,7 @@ stdenv.mkDerivation(finalAttrs: {
|
|||
(lib.mesonEnable "x11" x11Support)
|
||||
(lib.mesonEnable "x11-xfixes" x11Support)
|
||||
(lib.mesonEnable "libcanberra" x11Support)
|
||||
(lib.mesonEnable "libmysofa" mysofaSupport)
|
||||
(lib.mesonEnable "libmysofa" true)
|
||||
(lib.mesonEnable "sdl2" false) # required only to build examples, causes dependency loop
|
||||
(lib.mesonBool "rlimits-install" false) # installs to /etc, we won't use this anyway
|
||||
(lib.mesonEnable "compress-offload" true)
|
||||
|
|
Loading…
Reference in a new issue