summary refs log tree commit diff
path: root/pkgs/applications/kde/libkexiv2.nix
blob: 8c8d244d6f6e63c53d9e7cbf74cf182370b40456 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ 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 ];
  outputs = [ "out" "dev" ];
}