mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
Merge pull request #334209 from NixOS/backport-334155-to-release-24.05
[Backport release-24.05] pavucontrol-qt: add missing `qtsvg` dependency
This commit is contained in:
commit
9b4c199789
@ -1,15 +1,17 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, libpulseaudio
|
||||
, lxqt-build-tools
|
||||
, pkg-config
|
||||
, qtbase
|
||||
, qttools
|
||||
, qtwayland
|
||||
, wrapQtAppsHook
|
||||
, gitUpdater
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
cmake,
|
||||
libpulseaudio,
|
||||
lxqt-build-tools,
|
||||
pkg-config,
|
||||
qtbase,
|
||||
qtsvg,
|
||||
qttools,
|
||||
qtwayland,
|
||||
wrapQtAppsHook,
|
||||
gitUpdater,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -34,17 +36,18 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [
|
||||
libpulseaudio
|
||||
qtbase
|
||||
qtsvg
|
||||
qtwayland
|
||||
];
|
||||
|
||||
passthru.updateScript = gitUpdater { };
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
homepage = "https://github.com/lxqt/pavucontrol-qt";
|
||||
description = "A Pulseaudio mixer in Qt (port of pavucontrol)";
|
||||
mainProgram = "pavucontrol-qt";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = teams.lxqt.members;
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = with lib.platforms; linux;
|
||||
maintainers = lib.teams.lxqt.members;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user