ffc78d3539
GitOrigin-RevId: d9dba88d08a9cdf483c3d45f0d7220cf97a4ce64
16 lines
314 B
Nix
16 lines
314 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" ];
|
|
}
|