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.kasa-crypt: 0.4.4 -> 0.5.0 (#375396)
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
kde-frameworks
/
kfilemetadata
/
default.nix
blob
1bdfc378d0314f57084447468a61f3dce7eda3ff
1
{
2
mkDerivation,
3
lib,
4
stdenv,
5
extra-cmake-modules,
6
attr,
7
ebook_tools,
8
exiv2,
9
ffmpeg,
10
karchive,
11
kcoreaddons,
12
ki18n,
13
poppler,
14
qtbase,
15
qtmultimedia,
16
taglib,
17
}:
18
19
mkDerivation {
20
pname = "kfilemetadata";
21
nativeBuildInputs = [ extra-cmake-modules ];
22
buildInputs =
23
lib.optionals stdenv.hostPlatform.isLinux [
24
attr
25
]
26
++ [
27
ebook_tools
28
exiv2
29
ffmpeg
30
karchive
31
kcoreaddons
32
ki18n
33
poppler
34
qtbase
35
qtmultimedia
36
taglib
37
];
38
patches = [
39
./cmake-install-paths.patch
40
];
41
}