summary refs log tree commit diff
path: root/pkgs/applications/kde/libkexiv2.nix
blob: 0991c5df5ab4923930f25fe4c4d8ca063cdc8f2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ kdeApp, lib, exiv2, extra-cmake-modules, qtbase }:

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