mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
18 lines
530 B
Nix
18 lines
530 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules, gettext, kdoctools, python,
|
|
cups, epoxy, mesa, pcre, pipewire,
|
|
kcoreaddons, knotifications, kwayland, kwidgetsaddons, kwindowsystem,
|
|
kirigami2, kdeclarative, plasma-framework, kio
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "xdg-desktop-portal-kde";
|
|
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python ];
|
|
buildInputs = [
|
|
cups epoxy mesa pcre pipewire
|
|
|
|
kio kcoreaddons knotifications kwayland kwidgetsaddons kwindowsystem
|
|
kirigami2 kdeclarative plasma-framework
|
|
];
|
|
}
|