depot/third_party/nixpkgs/pkgs/applications/kde/libkexiv2.nix
Default email ffc78d3539 Project import generated by Copybara.
GitOrigin-RevId: d9dba88d08a9cdf483c3d45f0d7220cf97a4ce64
2021-01-05 19:05:55 +02:00

13 lines
359 B
Nix

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