Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 041a24254ea6
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 06ce0d954b65
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 6, 2020

  1. thunderbird*: switch default: 68 -> 78

    I didn't feel comfortable with *immediately* removing 68,
    even though nixers have rollbacks etc.
    
    (cherry picked from commit 2be2283)
    It's not nice, but the 68 branch seems unsupported upstream now,
    and soon it will surely contain public vulnerabilities.
    vcunat committed Oct 6, 2020
    Copy the full SHA
    06ce0d9 View commit details
Showing with 4 additions and 2 deletions.
  1. +4 −2 pkgs/top-level/all-packages.nix
6 changes: 4 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -21833,6 +21833,7 @@ in

thonny = callPackage ../applications/editors/thonny { };

thunderbird = thunderbird-78;
thunderbird-78 = callPackage ../applications/networking/mailreaders/thunderbird {
inherit (rustPackages_1_44) cargo rustc;
rust-cbindgen = rust-cbindgen_latest;
@@ -21844,17 +21845,18 @@ in
gtk3Support = true;
};

thunderbird = callPackage ../applications/networking/mailreaders/thunderbird/68.nix {
thunderbird-68 = callPackage ../applications/networking/mailreaders/thunderbird/68.nix {
inherit (gnome2) libIDL;
libpng = libpng_apng;
gtk3Support = true;
};

thunderbolt = callPackage ../os-specific/linux/thunderbolt {};

thunderbird-bin = thunderbird-bin-78;
thunderbird-bin-78 = callPackage ../applications/networking/mailreaders/thunderbird-bin { };

thunderbird-bin = callPackage ../applications/networking/mailreaders/thunderbird-bin/68.nix {
thunderbird-bin-68 = callPackage ../applications/networking/mailreaders/thunderbird-bin/68.nix {
gconf = pkgs.gnome2.GConf;
inherit (pkgs.gnome2) libgnome libgnomeui;
};