about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authortaku0 <mxxouy6x3m_github@tatapa.org>2017-11-13 21:12:59 +0900
committertaku0 <mxxouy6x3m_github@tatapa.org>2017-11-13 23:01:02 +0900
commit559433d0db3979f77befe73ad5c65b8500277629 (patch)
treef39fb75d05990212fac813ae193e8944d1e13e37 /pkgs/applications/networking
parentb5f2a090deddfbbf14c62bfe5998a0e03e485cb9 (diff)
downloadnixlib-559433d0db3979f77befe73ad5c65b8500277629.tar
nixlib-559433d0db3979f77befe73ad5c65b8500277629.tar.gz
nixlib-559433d0db3979f77befe73ad5c65b8500277629.tar.bz2
nixlib-559433d0db3979f77befe73ad5c65b8500277629.tar.lz
nixlib-559433d0db3979f77befe73ad5c65b8500277629.tar.xz
nixlib-559433d0db3979f77befe73ad5c65b8500277629.tar.zst
nixlib-559433d0db3979f77befe73ad5c65b8500277629.zip
firefox: 56.0.2 -> 57.0
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/browsers/firefox/common.nix6
-rw-r--r--pkgs/applications/networking/browsers/firefox/packages.nix4
2 files changed, 3 insertions, 7 deletions
diff --git a/pkgs/applications/networking/browsers/firefox/common.nix b/pkgs/applications/networking/browsers/firefox/common.nix
index b8f57eb2edb8..ccf762afbec3 100644
--- a/pkgs/applications/networking/browsers/firefox/common.nix
+++ b/pkgs/applications/networking/browsers/firefox/common.nix
@@ -29,11 +29,9 @@
 # Set to `privacySupport` or `false`.
 
 , webrtcSupport ? !privacySupport
-, geolocationSupport ? !privacySupport
-, googleAPISupport ? geolocationSupport
+, googleAPISupport ? !privacySupport
 , crashreporterSupport ? false
 
-, safeBrowsingSupport ? false
 , drmSupport ? false
 
 ## other
@@ -161,10 +159,8 @@ stdenv.mkDerivation (rec {
   ++ flag gssSupport "negotiateauth"
   ++ lib.optional (!ffmpegSupport) "--disable-gstreamer"
   ++ flag webrtcSupport "webrtc"
-  ++ flag geolocationSupport "mozril-geoloc"
   ++ lib.optional googleAPISupport "--with-google-api-keyfile=ga"
   ++ flag crashreporterSupport "crashreporter"
-  ++ flag safeBrowsingSupport "safe-browsing"
   ++ lib.optional drmSupport "--enable-eme=widevine"
 
   ++ (if debugBuild then [ "--enable-debug" "--enable-profiling" ]
diff --git a/pkgs/applications/networking/browsers/firefox/packages.nix b/pkgs/applications/networking/browsers/firefox/packages.nix
index a1d5df5029c1..214faf262946 100644
--- a/pkgs/applications/networking/browsers/firefox/packages.nix
+++ b/pkgs/applications/networking/browsers/firefox/packages.nix
@@ -6,10 +6,10 @@ rec {
 
   firefox = common rec {
     pname = "firefox";
-    version = "56.0.2";
+    version = "57.0";
     src = fetchurl {
       url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz";
-      sha512 = "35f81e8163a254b7e134fc073acbcff63aa1025b9c6392377650a8f2d0a5f0c77211adb0ae3d8ac85f036bb387246934b8847f14a03fceb7fcbc5b3cf94c9392";
+      sha512 = "bd99ff97a2a6f824e6fbd36fd00193903159e309506b1e6945dcbc43a17a95aaa54a05f32131c56872e8860878ba6063008667955550f03aa8c7084f834d14fc";
     };
 
     patches =