mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 14:40:07 +03:00
16 lines
407 B
Nix
16 lines
407 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules, gettext, kdoctools, python,
|
|
kcoreaddons, knotifications, kwayland, kwidgetsaddons, kwindowsystem,
|
|
cups, pcre, pipewire
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "xdg-desktop-portal-kde";
|
|
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python ];
|
|
buildInputs = [
|
|
cups pcre pipewire
|
|
kcoreaddons knotifications kwayland kwidgetsaddons kwindowsystem
|
|
];
|
|
}
|