summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-16.04/libkipi.nix
blob: 33903463714a77eb69f5dd63df0770735ee74755 (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";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  propagatedBuildInputs = [
    kconfig ki18n kservice kxmlgui
  ];
}