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

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