summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-15.12/libkexiv2.nix
blob: afb1ac836537835c46e61c628edead4e0302158d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ kdeApp
, lib
, exiv2
, extra-cmake-modules
}:

kdeApp {
  name = "libkexiv2";
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    exiv2
  ];
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
}