nixpkgs/pkgs/desktops/plasma-5/plasma-pa.nix
Fabián Heredia Montiel a0187a2a21 plasma-pa: drop GConf dependency
Removed from upsteam at 5.24.90/5.25.0

Sources:
- https://invent.kde.org/plasma/plasma-pa/-/merge_requests/117
- 36d6eb9c2b
2024-09-16 13:54:58 -06:00

42 lines
619 B
Nix

{ mkDerivation
, extra-cmake-modules
, kdoctools
, kcmutils
, kconfigwidgets
, kcoreaddons
, kdeclarative
, kglobalaccel
, ki18n
, kwindowsystem
, plasma-framework
, qtbase
, qtdeclarative
, glib
, libcanberra-gtk3
, libpulseaudio
, sound-theme-freedesktop
}:
mkDerivation {
pname = "plasma-pa";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
glib
libcanberra-gtk3
libpulseaudio
sound-theme-freedesktop
kcmutils
kconfigwidgets
kcoreaddons
kdeclarative
kglobalaccel
ki18n
plasma-framework
kwindowsystem
qtbase
qtdeclarative
];
}