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
libfmvoice: 0-unstable-2024-11-08 -> 0-unstable-2024-12-11 (#364919)
[NixPkgs.git]
/
pkgs
/
applications
/
kde
/
kmime.nix
blob
6e2ad294db1c66a783a066af9290a866dde6fd81
1
{
2
mkDerivation,
3
lib,
4
kdepimTeam,
5
extra-cmake-modules,
6
ki18n,
7
kcodecs,
8
qtbase,
9
}:
10
11
mkDerivation {
12
pname = "kmime";
13
meta = {
14
license = [ lib.licenses.lgpl21 ];
15
maintainers = kdepimTeam;
16
};
17
nativeBuildInputs = [ extra-cmake-modules ];
18
buildInputs = [
19
kcodecs
20
ki18n
21
qtbase
22
];
23
outputs = [
24
"out"
25
"dev"
26
];
27
postInstall = ''
28
# added as an include directory by cmake files and fails to compile if it's missing
29
mkdir -p "$dev/include/KF5"
30
'';
31
}