nixpkgs/pkgs/applications/kde/kmime.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

16 lines
242 B
Nix

{
kdeApp, lib,
ecm, ki18n,
kcodecs
}:
kdeApp {
name = "kmime";
meta = {
license = [ lib.licenses.lgpl21 ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ ecm ki18n ];
buildInputs = [ kcodecs ];
}