about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/plasma-browser-integration.nix
blob: c951f359c5482399a226d9a0e0bb9f79cbef9990 (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
{ mkDerivation
, extra-cmake-modules
, qtbase
, kfilemetadata
, kio
, ki18n
, kconfig
, kdbusaddons
, knotifications
, kpurpose
, krunner
, kwindowsystem
, kactivities
, plasma-workspace
}:

mkDerivation {
  pname = "plasma-browser-integration";
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    qtbase
    kfilemetadata
    kio
    ki18n
    kconfig
    kdbusaddons
    knotifications
    kpurpose
    krunner
    kwindowsystem
    kactivities
    plasma-workspace
  ];

  meta = {
    description = "Components necessary to integrate browsers into the Plasma Desktop";
    mainProgram = "plasma-browser-integration-host";
    homepage = "https://community.kde.org/Plasma/Browser_Integration";
  };
}