mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
a0187a2a21
Removed from upsteam at 5.24.90/5.25.0
Sources:
- https://invent.kde.org/plasma/plasma-pa/-/merge_requests/117
- 36d6eb9c2b
41 lines
619 B
Nix
41 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
|
|
];
|
|
}
|