repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git]
/
pkgs
/
desktops
/
plasma-5
/
plasma-browser-integration.nix
blob
c951f359c5482399a226d9a0e0bb9f79cbef9990
1
{ mkDerivation
2
, extra-cmake-modules
3
, qtbase
4
, kfilemetadata
5
, kio
6
, ki18n
7
, kconfig
8
, kdbusaddons
9
, knotifications
10
, kpurpose
11
, krunner
12
, kwindowsystem
13
, kactivities
14
, plasma-workspace
15
}:
16
17
mkDerivation {
18
pname = "plasma-browser-integration";
19
nativeBuildInputs = [
20
extra-cmake-modules
21
];
22
buildInputs = [
23
qtbase
24
kfilemetadata
25
kio
26
ki18n
27
kconfig
28
kdbusaddons
29
knotifications
30
kpurpose
31
krunner
32
kwindowsystem
33
kactivities
34
plasma-workspace
35
];
36
37
meta = {
38
description = "Components necessary to integrate browsers into the Plasma Desktop";
39
mainProgram = "plasma-browser-integration-host";
40
homepage = "https://community.kde.org/Plasma/Browser_Integration";
41
};
42
}