summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authortaku0 <mxxouy6x3m_github@tatapa.org>2018-10-03 09:13:57 +0900
committertaku0 <mxxouy6x3m_github@tatapa.org>2018-10-03 21:32:13 +0900
commitd802524def3c7ca26e2c0206751b1ff7f1c702a6 (patch)
tree1a493a2691e59dd8409a4f0b32dd6d583f133228 /pkgs/applications/networking
parentd4de3b2d34100c3253f18b3404bfe041197324ef (diff)
downloadnixpkgs-d802524def3c7ca26e2c0206751b1ff7f1c702a6.tar
nixpkgs-d802524def3c7ca26e2c0206751b1ff7f1c702a6.tar.gz
nixpkgs-d802524def3c7ca26e2c0206751b1ff7f1c702a6.tar.bz2
nixpkgs-d802524def3c7ca26e2c0206751b1ff7f1c702a6.tar.lz
nixpkgs-d802524def3c7ca26e2c0206751b1ff7f1c702a6.tar.xz
nixpkgs-d802524def3c7ca26e2c0206751b1ff7f1c702a6.tar.zst
nixpkgs-d802524def3c7ca26e2c0206751b1ff7f1c702a6.zip
thunderbird: 60.0 -> 60.2.1
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/mailreaders/thunderbird/default.nix18
1 files changed, 14 insertions, 4 deletions
diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
index d925838e642..e0bedeb2f04 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
@@ -1,5 +1,5 @@
-{ lib, stdenv, fetchurl, pkgconfig, gtk2, pango, perl, python, zip, libIDL
-, libjpeg, zlib, dbus, dbus-glib, bzip2, xorg
+{ lib, stdenv, fetchurl, pkgconfig, gtk2, pango, perl, python, zip, fetchpatch
+, libIDL, libjpeg, zlib, dbus, dbus-glib, bzip2, xorg
 , freetype, fontconfig, file, nspr, nss, libnotify
 , yasm, libGLU_combined, sqlite, unzip
 , hunspell, libevent, libstartup_notification
@@ -24,11 +24,11 @@ let
   gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc;
 in stdenv.mkDerivation rec {
   name = "thunderbird-${version}";
-  version = "60.0";
+  version = "60.2.1";
 
   src = fetchurl {
     url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz";
-    sha512 = "1933csh6swcx1z35lbxfkxlln36mx2mny28rzxz53r480wcvar8zcj77gwb06hzn6j5cvqls7qd5n6a7x43sp7w9ykkf4kf9gmlccya";
+    sha512 = "018l9pq03nzlirpaf285qpwvb8s4msam8n91d15lzc1bc1caq9zcy2dnrnvn5av3jlapm9ckz028iar66nhqxi2kkqbmiaq0v4s6kfp";
   };
 
   # from firefox, but without sound libraries
@@ -47,6 +47,16 @@ in stdenv.mkDerivation rec {
   # from firefox + m4 + wrapperTool
   nativeBuildInputs = [ m4 autoconf213 which gnused pkgconfig perl python wrapperTool cargo rustc ];
 
+  # https://bugzilla.mozilla.org/show_bug.cgi?format=default&id=1479540
+  # https://hg.mozilla.org/releases/mozilla-release/rev/bc651d3d910c
+  patches = [
+    (fetchpatch {
+      name = "bc651d3d910c.patch";
+      url = "https://hg.mozilla.org/releases/mozilla-release/raw-rev/bc651d3d910c";
+      sha256 = "0iybkadsgsf6a3pq3jh8z1p110vmpkih8i35jfj8micdkhxzi89g";
+    })
+  ];
+
   configureFlags =
     [ # from firefox, but without sound libraries (alsa, libvpx, pulseaudio)
       "--enable-application=comm/mail"