···1414, freetype
1515, glib
1616, gnugrep
1717+, gnupg
1718, gnused
1919+, gpgme
1820, icu
1921, jemalloc
2022, lib
2323+, libevent
2124, libGL
2225, libGLU
2323-, libevent
2426, libjpeg
2527, libnotify
2628, libpng
···288290 rm -rf $out/include $out/lib/thunderbird-devel-* $out/share/idl
289291 '';
290292293293+ # Note on GPG support:
294294+ # Thunderbird's native GPG support does not yet support smartcards.
295295+ # The official upstream recommendation is to configure fall back to gnupg
296296+ # using the Thunderbird config `mail.openpgp.allow_external_gnupg`
297297+ # and GPG keys set up; instructions with pictures at:
298298+ # https://anweshadas.in/how-to-use-yubikey-or-any-gpg-smartcard-in-thunderbird-78/
299299+ # For that to work out of the box, it requires `gnupg` on PATH and
300300+ # `gpgme` in `LD_LIBRARY_PATH`; we do this below.
301301+291302 preFixup = ''
292303 # Needed to find Mozilla runtime
293304 gappsWrapperArgs+=(
···297308 --set SNAP_NAME "thunderbird"
298309 --set MOZ_LEGACY_PROFILES 1
299310 --set MOZ_ALLOW_DOWNGRADE 1
311311+ --prefix PATH : "${lib.getBin gnupg}/bin"
312312+ --prefix LD_LIBRARY_PATH : "${lib.getLib gpgme}/lib"
300313 )
301314 '';
302315···325338326339 requiredSystemFeatures = [ "big-parallel" ];
327340328328- meta = with stdenv.lib; {
341341+ meta = with lib; {
329342 description = "A full-featured e-mail client";
330343 homepage = "https://www.thunderbird.net";
331344 maintainers = with maintainers; [
···12121313buildPythonPackage rec {
1414 pname = "botocore";
1515- version = "1.19.42"; # N.B: if you change this, change boto3 and awscli to a matching version
1515+ version = "1.19.43"; # N.B: if you change this, change boto3 and awscli to a matching version
16161717 src = fetchPypi {
1818 inherit pname version;
1919- sha256 = "sha256-8LBx/Qj01y17osVH2lKavr4FJwXBWVvm0SohUadaYCk=";
1919+ sha256 = "sha256-c5jJANvU49YWRyaSFTluo+gIL0lPPntl2basoEnB1GM=";
2020 };
21212222 propagatedBuildInputs = [
···28282929in with py.pkgs; buildPythonApplication rec {
3030 pname = "awscli";
3131- version = "1.18.202"; # N.B: if you change this, change botocore to a matching version too
3131+ version = "1.18.203"; # N.B: if you change this, change botocore to a matching version too
32323333 src = fetchPypi {
3434 inherit pname version;
3535- sha256 = "sha256-nlgqIzFELlg8Ck3HCXBx/LDzlM9p2CGKOgA2vS+r2y0=";
3535+ sha256 = "sha256-afcXbYKRc9w0Zbuyg/bDA/J/lHm4N4FttUgGk4h4H4k=";
3636 };
37373838 postPatch = ''