mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-15 08:34:04 +00:00
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"
|
|
];
|
|
}
|