about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/xdg-desktop-portal-kde.nix
blob: cbda6124a3193d5e2d48de926ca1245ee37c9824 (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
50
{ mkDerivation
, 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
, plasma-workspace
, 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
    plasma-workspace
  ];
}