summary refs log tree commit diff
path: root/pkgs/applications/misc/zathura/pdf-poppler
diff options
context:
space:
mode:
authorKirill Elagin <kirelagin@gmail.com>2014-05-17 16:16:50 +0400
committerKirill Elagin <kirelagin@gmail.com>2014-05-17 16:46:20 +0400
commitd15c34f6778cb7f88975549c65976aacb64b0f56 (patch)
treec21fe093303331e9c047df1455958c4e05c3974d /pkgs/applications/misc/zathura/pdf-poppler
parentcadbca8a6fa50b3eba23ac1f53a1e0d780211f49 (diff)
downloadnixlib-d15c34f6778cb7f88975549c65976aacb64b0f56.tar
nixlib-d15c34f6778cb7f88975549c65976aacb64b0f56.tar.gz
nixlib-d15c34f6778cb7f88975549c65976aacb64b0f56.tar.bz2
nixlib-d15c34f6778cb7f88975549c65976aacb64b0f56.tar.lz
nixlib-d15c34f6778cb7f88975549c65976aacb64b0f56.tar.xz
nixlib-d15c34f6778cb7f88975549c65976aacb64b0f56.tar.zst
nixlib-d15c34f6778cb7f88975549c65976aacb64b0f56.zip
zathura: mupdf plugin
Diffstat (limited to 'pkgs/applications/misc/zathura/pdf-poppler')
-rw-r--r--pkgs/applications/misc/zathura/pdf-poppler/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/misc/zathura/pdf-poppler/default.nix b/pkgs/applications/misc/zathura/pdf-poppler/default.nix
index ce4894e6c0f1..6625bf471942 100644
--- a/pkgs/applications/misc/zathura/pdf-poppler/default.nix
+++ b/pkgs/applications/misc/zathura/pdf-poppler/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, zathura_core, girara, poppler, gettext }:
+{ stdenv, fetchurl, pkgconfig, zathura_core, girara, poppler }:
 
 stdenv.mkDerivation rec {
   version = "0.2.5";
@@ -9,16 +9,16 @@ stdenv.mkDerivation rec {
     sha256 = "1b0chsds8iwjm4g629p6a67nb6wgra65pw2vvngd7g35dmcjgcv0";
   };
 
-  buildInputs = [ pkgconfig poppler gettext zathura_core girara ];
+  buildInputs = [ pkgconfig poppler zathura_core girara ];
 
   makeFlags = "PREFIX=$(out) PLUGINDIR=$(out)/lib";
 
   meta = {
     homepage = http://pwmt.org/projects/zathura/;
-    description = "A zathura PDF plugin";
+    description = "A zathura PDF plugin (poppler)";
     longDescription = ''
       The zathura-pdf-poppler plugin adds PDF support to zathura by 
-      using the poppler rendering engine.
+      using the poppler rendering library.
     '';
     license = stdenv.lib.licenses.zlib;
     platforms = stdenv.lib.platforms.linux;