thunderbird: disable pgo support

Tries to connect out to the internet, so sorry, no pgo for thunderbird.

> console.warn: feeds: "downloadFeed: network connection unavailable"
This commit is contained in:
Martin Weinelt 2022-03-24 01:21:30 +01:00 committed by Yuka
parent 0d3772f645
commit 6e24b768b3

View file

@ -8,7 +8,7 @@ let
in
rec {
thunderbird = common rec {
thunderbird = (common rec {
pname = "thunderbird";
version = "91.7.0";
application = "comm/mail";
@ -35,5 +35,7 @@ rec {
updateScript = callPackage ./update.nix {
attrPath = "thunderbird-unwrapped";
};
}).override {
pgoSupport = false; # console.warn: feeds: "downloadFeed: network connection unavailable"
};
}