nixpkgs/pkgs/applications/kde/kdegraphics-mobipocket.nix

16 lines
284 B
Nix
Raw Normal View History

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