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
Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git]
/
pkgs
/
applications
/
maui
/
mauikit-imagetools.nix
blob
141d1953528a07f03ac8c65da15fa1d56ecf4b83
1
{ lib
2
, mkDerivation
3
, cmake
4
, extra-cmake-modules
5
, kconfig
6
, kio
7
, leptonica
8
, mauikit
9
, opencv
10
, qtlocation
11
, exiv2
12
, kquickimageedit
13
, tesseract
14
}:
15
16
mkDerivation {
17
pname = "mauikit-imagetools";
18
19
nativeBuildInputs = [
20
cmake
21
extra-cmake-modules
22
];
23
24
buildInputs = [
25
kconfig
26
kio
27
leptonica
28
mauikit
29
opencv
30
qtlocation
31
exiv2
32
kquickimageedit
33
tesseract
34
];
35
36
meta = with lib; {
37
homepage = "https://invent.kde.org/maui/mauikit-imagetools";
38
description = "MauiKit Image Tools Components";
39
license = licenses.lgpl21Plus;
40
maintainers = with maintainers; [ onny ];
41
};
42
}