52 lines
776 B
Nix
52 lines
776 B
Nix
|
{ mkDerivation
|
||
|
, extra-cmake-modules
|
||
|
, gettext
|
||
|
, kdoctools
|
||
|
, wayland-scanner
|
||
|
, cups
|
||
|
, libepoxy
|
||
|
, mesa
|
||
|
, pcre
|
||
|
, pipewire
|
||
|
, wayland
|
||
|
, wayland-protocols
|
||
|
, kcoreaddons
|
||
|
, knotifications
|
||
|
, kwayland
|
||
|
, kwidgetsaddons
|
||
|
, kwindowsystem
|
||
|
, kirigami2
|
||
|
, kdeclarative
|
||
|
, plasma-framework
|
||
|
, plasma-wayland-protocols
|
||
|
, plasma-workspace
|
||
|
, kio
|
||
|
, qtbase
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
pname = "xdg-desktop-portal-kde";
|
||
|
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools wayland-scanner ];
|
||
|
buildInputs = [
|
||
|
cups
|
||
|
libepoxy
|
||
|
mesa
|
||
|
pcre
|
||
|
pipewire
|
||
|
wayland
|
||
|
wayland-protocols
|
||
|
|
||
|
kio
|
||
|
kcoreaddons
|
||
|
knotifications
|
||
|
kwayland
|
||
|
kwidgetsaddons
|
||
|
kwindowsystem
|
||
|
kirigami2
|
||
|
kdeclarative
|
||
|
plasma-framework
|
||
|
plasma-wayland-protocols
|
||
|
plasma-workspace
|
||
|
];
|
||
|
}
|