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
python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
kde-frameworks
/
kfilemetadata
/
default.nix
blob
782b033221430f97e3f4d25e11603ec396776397
1
{ mkDerivation
2
, lib
3
, extra-cmake-modules
4
, attr
5
, ebook_tools
6
, exiv2
7
, ffmpeg
8
, karchive
9
, kcoreaddons
10
, ki18n
11
, poppler
12
, qtbase
13
, qtmultimedia
14
, taglib
15
}:
16
17
mkDerivation {
18
pname = "kfilemetadata";
19
nativeBuildInputs = [ extra-cmake-modules ];
20
buildInputs = [
21
attr
22
ebook_tools
23
exiv2
24
ffmpeg
25
karchive
26
kcoreaddons
27
ki18n
28
poppler
29
qtbase
30
qtmultimedia
31
taglib
32
];
33
patches = [
34
./cmake-install-paths.patch
35
];
36
}