20 lines
327 B
Nix
20 lines
327 B
Nix
{
|
|
mkDerivation,
|
|
lib,
|
|
extra-cmake-modules,
|
|
kio,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kdegraphics-mobipocket";
|
|
meta = {
|
|
license = [ lib.licenses.gpl2Plus ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ kio ];
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
}
|