evcc: 0.131.8 -> 0.131.10 (#364658)
[NixPkgs.git] / pkgs / applications / kde / libkexiv2.nix
blob3017618fcaa554c78631139fa7ab06764e34a33c
2   mkDerivation,
3   lib,
4   exiv2,
5   extra-cmake-modules,
6   qtbase,
7 }:
9 mkDerivation {
10   pname = "libkexiv2";
11   meta = {
12     license = with lib.licenses; [
13       gpl2
14       lgpl21
15       bsd3
16     ];
17     maintainers = [ lib.maintainers.ttuegel ];
18   };
19   nativeBuildInputs = [ extra-cmake-modules ];
20   buildInputs = [ qtbase ];
21   propagatedBuildInputs = [ exiv2 ];
22   outputs = [
23     "out"
24     "dev"
25   ];