nixpkgs/pkgs/by-name/pa/pavucontrol/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

73 lines
1.6 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,
libpressureaudio,
}:
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
libpressureaudio
];
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;
};
})