about summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5/xdg-desktop-portal-kde.nix
blob: dc5728791b60984f0e69e2c936ea5b3fac641cf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{ 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
  ];
}