Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / kde / libkexiv2.nix
blob8d9b3a820329964ab201f548fb859fe513ac30d2
1 { mkDerivation, lib, exiv2, extra-cmake-modules, qtbase }:
3 mkDerivation {
4   pname = "libkexiv2";
5   meta = {
6     license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
7     maintainers = [ lib.maintainers.ttuegel ];
8   };
9   nativeBuildInputs = [ extra-cmake-modules ];
10   buildInputs = [ qtbase ];
11   propagatedBuildInputs = [ exiv2 ];
12   outputs = [ "out" "dev" ];