Skip to content

Commit

Permalink
Merge #26601: thunderbird*: 52.1.1 -> 52.2.0 (security)
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Jun 15, 2017
1 parent 0b50967 commit 791f072
Show file tree
Hide file tree
Showing 6 changed files with 604 additions and 604 deletions.
4 changes: 4 additions & 0 deletions pkgs/applications/networking/browsers/firefox-bin/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,10 @@ stdenv.mkDerivation {
passthru.ffmpegSupport = true;
passthru.updateScript = import ./update.nix {
inherit name channel writeScript xidel coreutils gnused gnugrep gnupg curl;
baseUrl =
if channel == "devedition"
then "http://archive.mozilla.org/pub/devedition/releases/"
else "http://archive.mozilla.org/pub/firefox/releases/";
};
meta = with stdenv.lib; {
description = "Mozilla Firefox, free web browser (binary package)";
Expand Down
7 changes: 1 addition & 6 deletions pkgs/applications/networking/browsers/firefox-bin/update.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,10 @@
, gnupg
, baseName ? "firefox"
, basePath ? "pkgs/applications/networking/browsers/firefox-bin"
, baseUrl
}:

let

baseUrl =
if channel == "devedition"
then "http://archive.mozilla.org/pub/devedition/releases/"
else "http://archive.mozilla.org/pub/firefox/releases/";

isBeta =
channel != "release";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
assert stdenv.isLinux;

# imports `version` and `sources`
with (import ./sources.nix);
with (import ./release_sources.nix);

let
arch = if stdenv.system == "i686-linux"
Expand Down Expand Up @@ -163,6 +163,7 @@ stdenv.mkDerivation {
passthru.updateScript = import ./../../browsers/firefox-bin/update.nix {
inherit name writeScript xidel coreutils gnused gnugrep curl gnupg;
baseName = "thunderbird";
channel = "release";
basePath = "pkgs/applications/networking/mailreaders/thunderbird-bin";
baseUrl = "http://archive.mozilla.org/pub/thunderbird/releases/";
};
Expand Down

0 comments on commit 791f072

Please sign in to comment.