From 611cedc127efdd093618ed021fb3b5b1fd239060 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Mon, 24 May 2021 21:50:25 +0200 Subject: [PATCH] poppler: build with nss by default for signature support 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 (cherry picked from commit 5f9862d524ee0ec1edcaa450fff4f54f4f5cc68e) --- 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 0146d80221b..8a5c6e132a7 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 ];