ce77225e21
This is the thing you want to look at.
14 lines
257 B
Nix
14 lines
257 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtwebengine,
|
|
hunspell,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "konqueror";
|
|
|
|
extraBuildInputs = [qtwebengine hunspell];
|
|
|
|
extraCmakeFlags = [
|
|
"-DWebEngineDictConverter_EXECUTABLE=${qtwebengine}/libexec/qwebengine_convert_dict"
|
|
];
|
|
}
|