nixpkgs/pkgs/applications/kde/kdegraphics-mobipocket.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
240 B
Nix

{
kdeApp, lib,
ecm,
kio
}:
kdeApp {
name = "kdegraphics-mobipocket";
meta = {
license = [ lib.licenses.gpl2Plus ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ ecm ];
buildInputs = [ kio ];
}