Merge pull request #54133 from peterhoeg/f/portal_kde

xdg-desktop-portal-kde: fix missing dependencies
This commit is contained in:
Tor Hedin Brønner 2019-01-17 11:25:05 +01:00 committed by GitHub
commit ee0d575b59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +1,15 @@
{ {
mkDerivation, mkDerivation,
extra-cmake-modules, gettext, kdoctools, python, extra-cmake-modules, gettext, kdoctools, python,
kcoreaddons, knotifications, kwayland, kwidgetsaddons kcoreaddons, knotifications, kwayland, kwidgetsaddons,
cups, pcre, pipewire
}: }:
mkDerivation { mkDerivation {
name = "xdg-desktop-portal-kde"; name = "xdg-desktop-portal-kde";
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python ]; nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python ];
buildInputs = [ buildInputs = [
cups pcre pipewire
kcoreaddons knotifications kwayland kwidgetsaddons kcoreaddons knotifications kwayland kwidgetsaddons
]; ];
} }