Marcin Serwin 9bf1c6850b
pavucontrol: remove libpressureaudio build input
`libpressureaudio` is an alternative to `libpulseaudio` which is also
present in the build inputs. Since the latter is listed earlier, it
shadows the `libpressureaudio` during pkg-config lookup which means that
it's unused. This just bloats the closure for no reason.
2025-04-04 23:13:21 +02:00

71 lines
1.5 KiB
Nix

{
fetchFromGitLab,
lib,
stdenv,
pkg-config,
intltool,
libpulseaudio,
gtkmm4,
libsigcxx,
# Since version 6.1, libcanberra is optional
withLibcanberra ? true,
libcanberra-gtk3,
json-glib,
adwaita-icon-theme,
wrapGAppsHook4,
meson,
ninja,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "pavucontrol";
version = "6.1";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "pulseaudio";
repo = "pavucontrol";
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-cru4I+LljYKIpIr7gSolnuLuUIXgc8l+JUmPrme4+YA=";
};
buildInputs = [
libpulseaudio
gtkmm4
libsigcxx
(lib.optionals withLibcanberra libcanberra-gtk3)
json-glib
adwaita-icon-theme
];
nativeBuildInputs = [
pkg-config
intltool
wrapGAppsHook4
meson
ninja
];
mesonFlags = [
"--prefix=${placeholder "out"}"
(lib.mesonBool "lynx" false)
];
enableParallelBuilding = true;
meta = {
changelog = "https://freedesktop.org/software/pulseaudio/pavucontrol/#news";
description = "PulseAudio Volume Control";
homepage = "http://freedesktop.org/software/pulseaudio/pavucontrol/";
license = lib.licenses.gpl2Plus;
longDescription = ''
PulseAudio Volume Control (pavucontrol) provides a GTK
graphical user interface to connect to a PulseAudio server and
easily control the volume of all clients, sinks, etc.
'';
mainProgram = "pavucontrol";
maintainers = with lib.maintainers; [ abbradar ];
platforms = lib.platforms.linux;
};
})