From 84aa23742f6c72501f9cc209f29c438766f5352d Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Wed, 26 May 2021 21:57:38 +0200 Subject: [PATCH] poppler: build with nss by default for signature support (#124294) Since 21.01, poppler supports PDF signing. As applications like okular start to make use of that feature, nss support for poppler is enabled by default to avoid unnecessary package duplication. When building a `minimal` version of poppler, nss is disabled as well. closes #120928 --- pkgs/development/libraries/poppler/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/libraries/poppler/default.nix b/pkgs/development/libraries/poppler/default.nix index 0146d80221bf..8a5c6e132a71 100644 --- a/pkgs/development/libraries/poppler/default.nix +++ b/pkgs/development/libraries/poppler/default.nix @@ -65,10 +65,9 @@ stdenv.mkDerivation rec { cairo lcms curl + nss ] ++ lib.optionals qt5Support [ qtbase - ] ++ lib.optionals utils [ - nss ] ++ lib.optionals introspectionSupport [ gobject-introspection ];