Merge pull request #30037 from leenaars/pdfsig

poppler: add nss to allow for building pdfsig

Changed files
+5 -2
pkgs
development
libraries
poppler
+5 -2
pkgs/development/libraries/poppler/default.nix
···
, withData ? true, poppler_data
, qt5Support ? false, qtbase ? null
, introspectionSupport ? false, gobjectIntrospection ? null
-
, utils ? false
+
, utils ? false, nss ? null
, minimal ? false, suffix ? "glib"
}:
···
[ zlib freetype fontconfig libjpeg openjpeg ]
++ optionals (!minimal) [ cairo lcms curl ]
++ optional qt5Support qtbase
+
++ optional utils nss
++ optional introspectionSupport gobjectIntrospection;
nativeBuildInputs = [ cmake ninja pkgconfig ];
···
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;