Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport 364213 to release 24.05 #367391

Closed
Closed
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
b454739
matomo: mark 4.x as EOL
niklaskorz Dec 12, 2024
26516ba
matomo_5: 5.1.2 -> 5.2.0
niklaskorz Dec 12, 2024
72170a8
chromium: fix cross-"building" of recompressed FODs
emilylange Dec 19, 2024
d642256
chromium,chromedriver: 131.0.6778.139 -> 131.0.6778.204
emilylange Dec 19, 2024
c220ced
[Backport release-24.05] chromium,chromedriver: 131.0.6778.139 -> 131…
emilylange Dec 20, 2024
95afa1f
linux_6_12: 6.12.5 -> 6.12.6
K900 Dec 20, 2024
f7c3930
linux_6_6: 6.6.66 -> 6.6.67
K900 Dec 20, 2024
11ef51f
linux_6_1: 6.1.120 -> 6.1.121
K900 Dec 20, 2024
e543dcd
linux_5_15: 5.15.174 -> 5.15.175
K900 Dec 20, 2024
279723c
linux_5_10: 5.10.231 -> 5.10.232
K900 Dec 20, 2024
0c7a752
linux_5_4: 5.4.287 -> 5.4.288
K900 Dec 20, 2024
aacb0ff
[Backport release-24.05] Kernel updates for 2024-12-20 (#366793)
K900 Dec 20, 2024
660c890
ungoogled-chromium: 131.0.6778.139-1 -> 131.0.6778.204-1
networkException Dec 20, 2024
7402b24
[release-24.05] matomo: mark 4.x as eol, 5.1.2 -> 5.2.0 (#364642)
leona-ya Dec 20, 2024
ebdacab
percona-server: add updateScript
osnyx Dec 19, 2024
ff74f85
percona-server_8_4: 8.4.2-2 -> 8.4.3-3
osnyx Dec 19, 2024
5d7be7f
percona-xtrabackup_8_4: 8.4.0-1 -> 8.4.0-2
osnyx Dec 19, 2024
6b7a142
[Backport release-24.05] percona: several package updates (#366896)
leona-ya Dec 20, 2024
d5431c5
moodle: 4.4.4 -> 4.4.5
LeSuisse Dec 11, 2024
56e11ec
[Backport release-24.05] moodle: 4.4.4 -> 4.4.5 (#366909)
leona-ya Dec 20, 2024
41e30b9
[Backport release-24.05] discord: bump all versions (#366344)
nixpkgs-ci[bot] Dec 20, 2024
4b78a7b
[Backport release-24.05] ungoogled-chromium: 131.0.6778.139-1 -> 131.…
emilylange Dec 20, 2024
c07b1fc
perlPackages.MailDKIM: add missing CryptX dependency (#366744)
Conni2461 Dec 20, 2024
24deb36
php82: 8.2.26 -> 8.2.27
r-ryantm Dec 20, 2024
a36ccdd
[Backport release-24.05] php82: 8.2.26 -> 8.2.27 (#367124)
drupol Dec 21, 2024
6df9247
[Backport release-24.05] perlPackages.MailDKIM: add missing CryptX de…
stigtsp Dec 22, 2024
d05735e
php83: 8.3.14 -> 8.3.15
Ma27 Dec 21, 2024
d76db36
Merge: [24.05] php83: 8.3.14 -> 8.3.15 (#367371)
Ma27 Dec 22, 2024
99f881c
gitlab: 17.5.2 -> 17.6.1
xanderio Nov 29, 2024
3076107
[Backport release-24.05] gitlab: 17.5.2 -> 17.6.1 (#363287)
leona-ya Dec 22, 2024
ab9010e
gitlab: 17.6.1 -> 17.6.2
leona-ya Dec 11, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chromium: fix cross-"building" of recompressed FODs
(cherry picked from commit 6a711c3)
  • Loading branch information
emilylange authored and github-actions[bot] committed Dec 19, 2024
commit 72170a83c01dbd78fbcd84a0ff47d6174fcc4662
3 changes: 2 additions & 1 deletion pkgs/applications/networking/browsers/chromium/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,10 @@ let
name = "source.tar.zstd";
downloadToTemp = false;
passthru.unpack = true;
nativeBuildInputs = [ zstd ];
postFetch = ''
tar \
--use-compress-program="${lib.getExe zstd} -T$NIX_BUILD_CORES" \
--use-compress-program="zstd -T$NIX_BUILD_CORES" \
--sort=name \
--mtime="1970-01-01" \
--owner=root --group=root \
Expand Down