summary refs log tree commit diff
path: root/pkgs/development/libraries/poppler
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-06-02 14:01:40 +0200
committerGitHub <noreply@github.com>2018-06-02 14:01:40 +0200
commit56a9ab5b8fb1f23b2ca2ff70a7b30ef12bb594fb (patch)
treea20b20c565ea29b096c6716a25b32f4b24b3558d /pkgs/development/libraries/poppler
parentae512f2d8e2907f2624d0d36f7c40dadea87d424 (diff)
parent01bf32deef9d80d49d0a34cee176e27dd2008b19 (diff)
downloadnixpkgs-56a9ab5b8fb1f23b2ca2ff70a7b30ef12bb594fb.tar
nixpkgs-56a9ab5b8fb1f23b2ca2ff70a7b30ef12bb594fb.tar.gz
nixpkgs-56a9ab5b8fb1f23b2ca2ff70a7b30ef12bb594fb.tar.bz2
nixpkgs-56a9ab5b8fb1f23b2ca2ff70a7b30ef12bb594fb.tar.lz
nixpkgs-56a9ab5b8fb1f23b2ca2ff70a7b30ef12bb594fb.tar.xz
nixpkgs-56a9ab5b8fb1f23b2ca2ff70a7b30ef12bb594fb.tar.zst
nixpkgs-56a9ab5b8fb1f23b2ca2ff70a7b30ef12bb594fb.zip
Merge pull request #30037 from leenaars/pdfsig
poppler: add nss to allow for building pdfsig
Diffstat (limited to 'pkgs/development/libraries/poppler')
-rw-r--r--pkgs/development/libraries/poppler/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/libraries/poppler/default.nix b/pkgs/development/libraries/poppler/default.nix
index 960a792822d..bfc94e1fac8 100644
--- a/pkgs/development/libraries/poppler/default.nix
+++ b/pkgs/development/libraries/poppler/default.nix
@@ -3,7 +3,7 @@
 , withData ? true, poppler_data
 , qt5Support ? false, qtbase ? null
 , introspectionSupport ? false, gobjectIntrospection ? null
-, utils ? false
+, utils ? false, nss ? null
 , minimal ? false, suffix ? "glib"
 }:
 
@@ -28,6 +28,7 @@ stdenv.mkDerivation rec {
     [ zlib freetype fontconfig libjpeg openjpeg ]
     ++ optionals (!minimal) [ cairo lcms curl ]
     ++ optional qt5Support qtbase
+    ++ optional utils nss
     ++ optional introspectionSupport gobjectIntrospection;
 
   nativeBuildInputs = [ cmake ninja pkgconfig ];
@@ -49,7 +50,9 @@ stdenv.mkDerivation rec {
     description = "A PDF rendering library";
 
     longDescription = ''
-      Poppler is a PDF rendering library based on the xpdf-3.0 code base.
+      Poppler is a PDF rendering library based on the xpdf-3.0 code
+      base. In addition it provides a number of tools that can be
+      installed separately.
     '';
 
     license = licenses.gpl2;