From ae8e4cc9ab57ff25d2ba6c4b369e8531ce43a6d2 Mon Sep 17 00:00:00 2001 From: Paul van der Walt Date: Mon, 2 Mar 2015 22:15:39 +0100 Subject: [PATCH] Search path environment variable for Zathura. Adds a search path environment variable for zathura plugins (for reading different file formats) called ZATHURA_PLUGIN_PATH. Command line option -p still takes precedence. Patch by Paul van der Walt Adjusted for Zathura 0.3.9 by Tobias Geerinckx-Rice --- zathura/zathura.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/zathura/zathura.c b/zathura/zathura.c --- a/zathura/zathura.c +++ b/zathura/zathura.c @@ -597,6 +597,13 @@ zathura_set_plugin_dir(zathura_t* zathura, const char* dir) g_return_if_fail(zathura != NULL); g_return_if_fail(zathura->plugins.manager != NULL); + /* Added for Guix: check if environment variable + * is set to specify location of zathura plugins. + */ + + if (dir == NULL) + dir = g_getenv("ZATHURA_PLUGIN_PATH"); + if (dir != NULL) { set_plugin_dir(zathura, dir); #ifdef ZATHURA_PLUGINDIR 1d1'>refslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2017-10-19 14:39:20 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2017-10-20 02:16:52 +0200
commit1e9433cf4de46ec1842fba772506973f18d6d1d1 (patch)
treefa93edc21741f3b783eeb2dd87464ca56bd57f3a /gnu
parent57473bfc5187223a8a039f7bb7daf6154aef9333 (diff)
downloadguix-1e9433cf4de46ec1842fba772506973f18d6d1d1.tar.gz
guix-1e9433cf4de46ec1842fba772506973f18d6d1d1.zip
gnu: qtox: Update to 1.12.1.
* gnu/packages/messaging.scm (qtox): Update to 1.12.1.
Diffstat (limited to 'gnu')