about summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/firefox
diff options
context:
space:
mode:
authorvolth <volth@webmaster.ms>2019-03-31 18:55:39 +0000
committerGitHub <noreply@github.com>2019-03-31 18:55:39 +0000
commit35510681537f8663fe5a4bfd45c84bd63131bca0 (patch)
tree3bb387820dc8e8b4b8efc1a401f97d6e82465485 /pkgs/applications/networking/browsers/firefox
parent9ba43c07cb96804db91185494993d9a095353527 (diff)
downloadnixlib-35510681537f8663fe5a4bfd45c84bd63131bca0.tar
nixlib-35510681537f8663fe5a4bfd45c84bd63131bca0.tar.gz
nixlib-35510681537f8663fe5a4bfd45c84bd63131bca0.tar.bz2
nixlib-35510681537f8663fe5a4bfd45c84bd63131bca0.tar.lz
nixlib-35510681537f8663fe5a4bfd45c84bd63131bca0.tar.xz
nixlib-35510681537f8663fe5a4bfd45c84bd63131bca0.tar.zst
nixlib-35510681537f8663fe5a4bfd45c84bd63131bca0.zip
firefox-esr-52: fix build
Diffstat (limited to 'pkgs/applications/networking/browsers/firefox')
-rw-r--r--pkgs/applications/networking/browsers/firefox/packages.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/firefox/packages.nix b/pkgs/applications/networking/browsers/firefox/packages.nix
index 8b7f15ca7ebb..1683b3c5121e 100644
--- a/pkgs/applications/networking/browsers/firefox/packages.nix
+++ b/pkgs/applications/networking/browsers/firefox/packages.nix
@@ -40,7 +40,7 @@ rec {
   # the web, there are many old useful plugins targeting offline
   # activities (e.g. ebook readers, syncronous translation, etc) that
   # will probably never be ported to WebExtensions API.
-  firefox-esr-52 = common rec {
+  firefox-esr-52 = (common rec {
     pname = "firefox-esr";
     ffversion = "52.9.0esr";
     src = fetchurl {
@@ -58,6 +58,8 @@ rec {
       description = "A web browser built from Firefox Extended Support Release source tree";
       knownVulnerabilities = [ "Support ended in August 2018." ];
     };
+  }).override {
+    gtk3Support = false;
   };
 
   firefox-esr-60 = common rec {