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
python313Packages.traits: fix build (#373698)
[NixPkgs.git]
/
pkgs
/
applications
/
kde
/
libgravatar.nix
blob
b444d0488e33433dd4ff512f28c25815580749af
1
{
2
mkDerivation,
3
lib,
4
kdepimTeam,
5
extra-cmake-modules,
6
kdoctools,
7
kconfig,
8
kio,
9
ktextwidgets,
10
kwidgetsaddons,
11
pimcommon,
12
}:
13
14
mkDerivation {
15
pname = "libgravatar";
16
meta = {
17
license = with lib.licenses; [
18
gpl2Plus
19
lgpl21Plus
20
fdl12Plus
21
];
22
maintainers = kdepimTeam;
23
};
24
nativeBuildInputs = [
25
extra-cmake-modules
26
kdoctools
27
];
28
propagatedBuildInputs = [
29
kconfig
30
kio
31
ktextwidgets
32
kwidgetsaddons
33
pimcommon
34
];
35
outputs = [
36
"out"
37
"dev"
38
];
39
postInstall = ''
40
# added as an include directory by cmake files and fails to compile if it's missing
41
mkdir -p "$dev/include/KF5"
42
'';
43
}