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
otadump: init at 0.1.2 (#329129)
[NixPkgs.git]
/
pkgs
/
applications
/
kde
/
kleopatra.nix
blob
1b07daee7a3386a7a342db211a2c1603277dff80
1
{
2
mkDerivation,
3
lib,
4
kdepimTeam,
5
extra-cmake-modules,
6
kdoctools,
7
boost,
8
gpgme,
9
kcmutils,
10
kdbusaddons,
11
kiconthemes,
12
kitemmodels,
13
kmime,
14
knotifications,
15
kwindowsystem,
16
kxmlgui,
17
libkleo,
18
kcrash,
19
kpipewire,
20
}:
21
22
mkDerivation {
23
pname = "kleopatra";
24
25
nativeBuildInputs = [
26
extra-cmake-modules
27
kdoctools
28
];
29
30
buildInputs = [
31
boost
32
gpgme
33
kcmutils
34
kdbusaddons
35
kiconthemes
36
kitemmodels
37
kmime
38
knotifications
39
kwindowsystem
40
kxmlgui
41
libkleo
42
kcrash
43
kpipewire
44
];
45
46
meta = {
47
homepage = "https://apps.kde.org/kleopatra/";
48
description = "Certificate manager and unified crypto GUI";
49
license = with lib.licenses; [
50
gpl2Plus
51
lgpl21Plus
52
fdl12Plus
53
];
54
maintainers = kdepimTeam;
55
};
56
}