Skip to content

Commit

Permalink
firefox: 56.0.2 -> 57.0
Browse files Browse the repository at this point in the history
(cherry picked from commit 559433d)
Signed-off-by: Domen Kožar <domen@dev.si>
  • Loading branch information
taku0 authored and domenkozar committed Nov 15, 2017
1 parent ac35504 commit e9776f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions pkgs/applications/networking/browsers/firefox/common.nix
Expand Up @@ -28,11 +28,9 @@
# Set to `privacySupport` or `false`.

, webrtcSupport ? !privacySupport
, geolocationSupport ? !privacySupport
, googleAPISupport ? geolocationSupport
, googleAPISupport ? !privacySupport
, crashreporterSupport ? false

, safeBrowsingSupport ? false
, drmSupport ? false

## other
Expand Down Expand Up @@ -158,10 +156,8 @@ stdenv.mkDerivation (rec {
++ flag ffmpegSupport "ffmpeg"
++ 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" ]
Expand Down
4 changes: 2 additions & 2 deletions pkgs/applications/networking/browsers/firefox/packages.nix
Expand Up @@ -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 =
Expand Down

1 comment on commit e9776f0

@bdimcheff
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this failed due to incompatible rust: https://hydra.nixos.org/build/64204084/nixlog/1

Please sign in to comment.