summary refs log tree commit diff
path: root/pkgs/applications/kde-apps-15.12/libkipi.nix
blob: c23cd8578fb96fe4b3be5e7f733f89b0e2d05f31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ kdeApp
, lib
, extra-cmake-modules
, kconfig
, ki18n
, kservice
, kxmlgui
}:

kdeApp {
  name = "libkipi";
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    kconfig ki18n kservice kxmlgui
  ];
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
}