mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
15 lines
378 B
Nix
15 lines
378 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules, gettext, kdoctools, python,
|
|
kcoreaddons, knotifications, kwayland, kwidgetsaddons,
|
|
cups, pcre, pipewire
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "xdg-desktop-portal-kde";
|
|
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python ];
|
|
buildInputs = [
|
|
cups pcre pipewire
|
|
kcoreaddons knotifications kwayland kwidgetsaddons
|
|
];
|
|
}
|