mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 18:34:38 +00:00
ce77225e21
This is the thing you want to look at.
15 lines
257 B
Nix
15 lines
257 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtwebengine,
|
|
hunspell,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "konqueror";
|
|
|
|
extraBuildInputs = [qtwebengine hunspell];
|
|
|
|
extraCmakeFlags = [
|
|
"-DWebEngineDictConverter_EXECUTABLE=${qtwebengine}/libexec/qwebengine_convert_dict"
|
|
];
|
|
}
|