brainix/sources/nixpkgs/pkgs/applications/kde/kdegraphics-mobipocket.nix
2026-02-13 17:06:24 +09:00

16 lines
313 B
Nix

{
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 ];
outputs = [ "out" "dev" ];
}