about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-04-12 00:40:17 +0200
committerJan Tojnar <jtojnar@gmail.com>2018-04-12 01:18:42 +0200
commit454ef678727bae0f18fb7614bcc52c5eb0fe42dd (patch)
tree800537de7751559087dd4f5fe95c6b05e50953a8 /pkgs/applications
parent8a4793a5c82aaa194ae420cd17243ce6a630cd1c (diff)
downloadnixlib-454ef678727bae0f18fb7614bcc52c5eb0fe42dd.tar
nixlib-454ef678727bae0f18fb7614bcc52c5eb0fe42dd.tar.gz
nixlib-454ef678727bae0f18fb7614bcc52c5eb0fe42dd.tar.bz2
nixlib-454ef678727bae0f18fb7614bcc52c5eb0fe42dd.tar.lz
nixlib-454ef678727bae0f18fb7614bcc52c5eb0fe42dd.tar.xz
nixlib-454ef678727bae0f18fb7614bcc52c5eb0fe42dd.tar.zst
nixlib-454ef678727bae0f18fb7614bcc52c5eb0fe42dd.zip
zathura_wrapper: fix module paths
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/zathura/wrapper.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/zathura/wrapper.nix b/pkgs/applications/misc/zathura/wrapper.nix
index 2fd7d58e63ed..64f617782f2d 100644
--- a/pkgs/applications/misc/zathura/wrapper.nix
+++ b/pkgs/applications/misc/zathura/wrapper.nix
@@ -1,7 +1,7 @@
 { symlinkJoin, lib, makeWrapper, zathura_core, plugins ? [] }:
 
 let
-  pluginsPath = lib.makeLibraryPath plugins;
+  pluginsPath = lib.makeSearchPath "lib/zathura" plugins;
 
 in symlinkJoin {
   name = "zathura-with-plugins-${zathura_core.version}";