Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / maui / mauikit-imagetools.nix
blob141d1953528a07f03ac8c65da15fa1d56ecf4b83
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
16 mkDerivation {
17   pname = "mauikit-imagetools";
19   nativeBuildInputs = [
20     cmake
21     extra-cmake-modules
22   ];
24   buildInputs = [
25     kconfig
26     kio
27     leptonica
28     mauikit
29     opencv
30     qtlocation
31     exiv2
32     kquickimageedit
33     tesseract
34   ];
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   };