aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/gajim-honour-GAJIM_PLUGIN_PATH.patch
blob: cb3313197cbcf86176e325fdc5dc570a91d0236b (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/gajim/common/configpaths.py	2020-11-19 12:12:02.004414323 +0100
+++ a/gajim/common/configpaths.py	2020-11-19 15:34:52.211476895 +0100
@@ -47,7 +47,7 @@
         return [Path(_paths['PLUGINS_BASE']),
                 Path('/app/plugins')]
     return [Path(_paths['PLUGINS_BASE']),
-            Path(_paths['PLUGINS_USER'])]
+            Path(_paths['PLUGINS_USER'])] + ([Path(os.getenv('GAJIM_PLUGIN_PATH'))] if os.getenv('GAJIM_PLUGIN_PATH') and Path(os.getenv('GAJIM_PLUGIN_PATH')).is_dir() else [])
 
 
 def get_paths(type_: PathType) -> Generator[str, None, None]:
arare.space> Zheng Junjie 2024-08-31gnu: fontutils: Add 'bash' input for 'wrap-program'....It is required for cross-compilation. * gnu/packages/fontutils.scm (fontforge): Adjust indentation. [inputs]: Add 'bash-minimal'. Remove labels. (fntsample)[inputs]: Add 'bash-minimal'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: Ib3498e8ab1e499db6bc512da31718690e46f90f1 Maxime Devos 2024-06-06gnu: Remove fontforge-20190801....* gnu/packages/fontutils.scm (fontforge-20190801): Delete variable. Change-Id: I65b148f77468a46e4c40a57ffdd44b3e43321449 Efraim Flashner 2024-05-05gnu: python-statmake: Adjust tests and version checks....* gnu/packages/fontutils.scm (python-statmake)[arguments]: Disable broken test; relax check for cattrs. Change-Id: Ibd479743160d3591088d17635e26484e7de5250f Ricardo Wurmus 2024-03-17gnu: libraqm: Update to 0.10.1....* gnu/packages/fontutils.scm (libraqm): Update to 0.10.1. Change-Id: Ic159b198a9f2c5b884df5568b0d4e528e36d2bb8 Nicolas Goaziou 2024-02-10gnu: fcft: Enable shaping support....While utf8proc is an optional dependency, it is required for shaping support. Without utf8proc, fcft_rasterize_text_run_utf32() is a no-op. This is a popular function used—among other things—by yambar, foot, fuzzel and fnott. Therefore, many other Linux distributions (Arch, Debian, Fedora, …) enable this feature and I think it would be nice to have in Guix as well. * gnu/packages/fontutils.scm (fcft): Depend on utf8proc. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Change-Id: I7489dbc7a42ffcca509d090df7d2a6250bf996ff Sören Tempel