11 lines
203 B
Nix
11 lines
203 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, python
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kapidox";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules python ];
|
|
}
|