15 lines
186 B
Nix
15 lines
186 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qtwebengine,
|
||
|
xapian,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "khelpcenter";
|
||
|
|
||
|
extraBuildInputs = [
|
||
|
qtwebengine
|
||
|
xapian
|
||
|
];
|
||
|
meta.mainProgram = "khelpcenter";
|
||
|
}
|