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
Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git]
/
pkgs
/
desktops
/
plasma-5
/
polkit-kde-agent.nix
blob
f96c642f7b28791195435944ea1a1f797a21e2df
1
{ mkDerivation
2
, extra-cmake-modules
3
, kcoreaddons
4
, kconfig
5
, kcrash
6
, kdbusaddons
7
, ki18n
8
, kiconthemes
9
, knotifications
10
, kwidgetsaddons
11
, kwindowsystem
12
, polkit-qt
13
}:
14
15
mkDerivation {
16
pname = "polkit-kde-agent";
17
nativeBuildInputs = [ extra-cmake-modules ];
18
propagatedBuildInputs = [
19
kdbusaddons
20
kwidgetsaddons
21
kcoreaddons
22
kcrash
23
kconfig
24
ki18n
25
kiconthemes
26
knotifications
27
kwindowsystem
28
polkit-qt
29
];
30
outputs = [ "out" "dev" ];
31
}