telegram-desktop: add missing runtime geo deps

This solves the following error when opening location picker:

```
Could not load 'libgeoclue-2.so.0'! Error: libgeoclue-2.so.0: cannot open shared object file: No such file or directory
```
This commit is contained in:
Ilya Fedin
2025-11-28 01:16:14 +04:00
parent 7b975b19ec
commit b7e4c0b382
@@ -14,6 +14,7 @@
libjxl,
wrapGAppsHook3,
wrapQtAppsHook,
geoclue2,
glib-networking,
webkitgtk_4_1,
withWebkit ? true,
@@ -53,7 +54,10 @@ stdenv.mkDerivation (finalAttrs: {
"--prefix"
"LD_LIBRARY_PATH"
":"
(lib.makeLibraryPath [ webkitgtk_4_1 ])
(lib.makeLibraryPath [
geoclue2
webkitgtk_4_1
])
];
dontUnpack = true;