nixpkgs/pkgs/applications/kde/libkexiv2.nix
Thomas Tuegel 8be4bd7416
kdeApplications: Move out of desktops/kde-5
- There is no such thing as KDE 5
2017-02-27 11:49:30 -06:00

12 lines
249 B
Nix

{ kdeApp, lib, exiv2, ecm }:
kdeApp {
name = "libkexiv2";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ ecm ];
propagatedBuildInputs = [ exiv2 ];
}