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

17 lines
314 B
Nix
Raw Permalink Normal View History

{
mkDerivation, lib,
extra-cmake-modules,
kio
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kdegraphics-mobipocket";
meta = {
license = [ lib.licenses.gpl2Plus ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ kio ];
outputs = [ "out" "dev" ];
}