Commit Graph

287 Commits

Author SHA1 Message Date
Vladimír Čunát
e8ecc402a5
Merge #146731: thunderbird*: 91.3.* -> 91.3.2 2021-11-23 18:56:27 +01:00
taku0
bdae026114 thunderbird: 91.3.1 -> 91.3.2 2021-11-20 14:44:41 +09:00
oxalica
7e899fd18e
thunderbird: reintroduce buildconfig patch to reduce closure size
This (partially) reverts commit 9ea377439e.
2021-11-19 17:04:01 +08:00
R. Ryantm
1b7f9b01fb thunderbird-unwrapped: 91.3.0 -> 91.3.1 2021-11-15 14:40:15 +00:00
taku0
18cf5c8cac thunderbird: 91.2.1 -> 91.3.0 2021-11-03 09:14:01 +09:00
Martin Weinelt
ffbac21daa
thunderbird-78: drop
Thunderbirds 78 series is EOL.
2021-11-02 14:41:04 +01:00
taku0
941500de8f thunderbird: 91.2.0 -> 91.2.1 2021-10-23 14:07:10 +09:00
R. RyanTM
a200db7d9e thunderbird-unwrapped: 91.1.2 -> 91.2.0 2021-10-06 22:28:29 +00:00
taku0
4e815405dd thunderbird: 91.1.1 -> 91.1.2 2021-09-28 09:12:47 +09:00
taku0
9ea377439e thunderbird: 91.1.0 -> 91.1.1
no-buildconfig-90.patch is applied by firefox/common.nix.

D124361.diff is incorporated into the upstream:
https://bugzilla.mozilla.org/show_bug.cgi?id=1727113
2021-09-18 11:46:26 +09:00
Vladimír Čunát
79f637da44
Merge #137226: thunderbird-78: 78.13.0 -> 78.14.0 2021-09-12 10:46:26 +02:00
Niklas Hambüchen
7d0988f213 thunderbird-78: 78.13.0 -> 78.14.0
Fixes CVE-2021-38495:

https://www.mozilla.org/en-US/security/advisories/mfsa2021-41/#CVE-2021-38495
2021-09-11 19:21:25 +02:00
taku0
ec53294446 thunderbird: 91.0.3 -> 91.1.0 2021-09-08 03:12:38 +09:00
Yureka
afaced2746
thunderbird: patch for #134433 2021-09-03 12:23:08 +02:00
taku0
ee015c55bc thunderbird: 91.0.2 -> 91.0.3 2021-08-26 20:28:59 +09:00
taku0
27f311c5c6 thunderbird: 91.0.1 -> 91.0.2 2021-08-21 15:57:51 +09:00
taku0
58b1998aa9 thunderbird: 91.0 -> 91.0.1 2021-08-18 20:23:45 +09:00
Yuka
acc802ec9a
thunderbird: fix update script (#133744)
#130116 broke hydra eval by calling a non-existing file as updateScript
2021-08-13 12:46:21 +02:00
Yureka
fb9860709c thunderbird: 78.13.0 -> 91.0 2021-08-12 11:21:58 +02:00
Yureka
8b1c14045d thunderbird: use firefox expression 2021-08-12 11:21:32 +02:00
taku0
13a68b47c4 thunderbird: 78.12.0 -> 78.13.0 2021-08-11 03:12:26 +09:00
taku0
db3297a081 thunderbird: 78.11.0 -> 78.12.0 2021-07-14 03:12:37 +09:00
Guillaume Maudoux
6f85ca4366 thunderbird: improve integration by depending on xdg-utils 2021-07-10 15:49:39 +02:00
ajs124
4e6e9adcd4 thunderbird: pass gnupg to passthru.updateScript
this fixes the tarball job
2021-06-19 23:40:47 +02:00
AndersonTorres
e9e5f5f84d Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
taku0
7267b80c71 thunderbird: 78.10.2 -> 78.11.0 2021-06-03 03:12:42 +09:00
taku0
731d227b8d thunderbird: 78.10.1 -> 78.10.2 2021-05-18 03:12:49 +09:00
Jan Tojnar
684991c696
Merge branch 'master' into staging-next
- Thunderbird 68 has been dropped on master.
- gccCrossLibcStdenv has been factored out on staging-next in all-packages.nix, while the file has been re-formatted on master.
2021-05-16 15:34:51 +02:00
ajs124
dd9525240f thunderbird-68: drop 2021-05-15 17:58:49 +02:00
github-actions[bot]
af9d9374fa
Merge staging-next into staging 2021-05-05 12:23:47 +00:00
taku0
95e5066a69 thunderbird: 78.10.0 -> 78.10.1 2021-05-05 03:12:57 +09:00
Andrew Childs
7869d16545 llvmPackages: Multuple outputs for everythting
Also begin to start work on cross compilation, though that will have to
be finished later.

The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.

Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.

----

Other misc notes, highly incomplete

- lvm-config-native and llvm-config are put in `dev` because they are
  tools just for build time.

- Clang no longer has an lld dep. That was introduced in
  db29857eb3, but if clang needs help
  finding lld when it is used we should just pass it flags / put in the
  resource dir. Providing it at build time increases critical path
  length for no good reason.

----

A note on `nativeCC`:

`stdenv` takes tools from the previous stage, so:

1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`

while:

1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2021-04-30 05:41:00 +00:00
github-actions[bot]
960439e003
Merge master into staging-next 2021-04-20 12:06:46 +00:00
taku0
e969f51893 thunderbird: 78.9.1 -> 78.10.0 2021-04-19 22:24:02 +09:00
Luke Granger-Brown
08b22e605b Merge remote-tracking branch 'upstream/staging-next' into down-integrate-staging 2021-04-12 18:49:01 +00:00
Gabriel Ebner
5ae84e81d7 thunderbird: add missing libdrm and libXdamage dependencies 2021-04-09 18:12:06 +02:00
taku0
45754ad612 thunderbird: 78.9.0 -> 78.9.1 2021-04-09 03:12:55 +09:00
taku0
8922a34d8b thunderbird: 78.8.1 -> 78.9.0 2021-03-25 03:12:41 +09:00
github-actions[bot]
6a3a358b0d
Merge master into staging-next 2021-03-10 18:23:15 +00:00
taku0
f99c8dc0fd thunderbird: 78.8.0 -> 78.8.1 2021-03-09 03:12:45 +09:00
Ben Siraphob
4f0cdb68d7 treewide: unzip buldInputs to nativeBuildInputs (2) 2021-03-06 15:18:05 +07:00
taku0
224c4066a6 thunderbird: 78.7.1 -> 78.8.0 2021-02-24 03:12:38 +09:00
taku0
7800a8fbc5 thunderbird: 78.7.0 -> 78.7.1 2021-02-06 03:12:44 +09:00
taku0
20259a943b thunderbird: 78.6.1 -> 78.7.0 2021-01-27 03:12:44 +09:00
Ben Siraphob
5d566c43b4 pkgs/applications: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
taku0
b731d1e50d thunderbird: 78.6.0 -> 78.6.1 2021-01-12 03:13:06 +09:00
Profpatsch
4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Bernardo Meurer
0ca60d3ba0
Merge pull request #107016 from tobiasBora/2020_thunderbird_add_icon
thunderbird: fix missing icon issue
2020-12-29 01:22:55 +00:00
Niklas Hambüchen
443724873f thunderbird, thunderbird.bin: Refactor: Reorder import lists.
Also `pkgs.lib` -> `lib`.
2020-12-22 02:02:47 +01:00
Niklas Hambüchen
2767936180 thunderbird: Add gpg/gpgme dependencies. Fixes #98765.
This enables to configure Thunderbird to use gnupg directly, which is the
official upstream recommendation when using GPG with smartcards, which are not
yet supported by Thunderbird's native GPG support.
2020-12-18 00:36:55 +01:00