mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
20 lines
642 B
Nix
20 lines
642 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, gettext, kdoctools,
|
|
cups, libepoxy, mesa, pcre, pipewire, wayland, wayland-protocols,
|
|
kcoreaddons, knotifications, kwayland, kwidgetsaddons, kwindowsystem,
|
|
kirigami2, kdeclarative, plasma-framework, plasma-wayland-protocols, kio,
|
|
qtbase
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "xdg-desktop-portal-kde";
|
|
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools ];
|
|
buildInputs = [
|
|
cups libepoxy mesa pcre pipewire wayland wayland-protocols
|
|
|
|
kio kcoreaddons knotifications kwayland kwidgetsaddons kwindowsystem
|
|
kirigami2 kdeclarative plasma-framework plasma-wayland-protocols
|
|
];
|
|
}
|