summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* ungoogled-chromium: 120.0.6099.129-1 -> 120.0.6099.199-1•••https://chromereleases.googleblog.com/2024/01/stable-channel-update-for-desktop.html This update includes 6 security fixes. CVEs: CVE-2024-0222 CVE-2024-0223 CVE-2024-0224 CVE-2024-0225 (cherry picked from commit d163ea4133312f04ebf8eb4875ea4b61400b4b5e) origin/backport-278603-to-release-23.11networkException2024-01-051-5/+5
* chromium: 120.0.6099.129 -> 120.0.6099.199•••https://chromereleases.googleblog.com/2024/01/stable-channel-update-for-desktop.html This update includes 6 security fixes. CVEs: CVE-2024-0222 CVE-2024-0223 CVE-2024-0224 CVE-2024-0225 (cherry picked from commit 5c77fff6097b20c6d11d3dda15d51d25d3144b96) emilylange2024-01-051-3/+3
* chromium: improve and move `recompressTarball`•••Recap: We need that (arguably stupid) helper function/drv because the chromium tarball is big -- and is likely to increase even more in the future. So big, that we eventually exceeded hydra.nixos.org's max-output-limit (3G). Instead of raising global hydra's limit, it was decided that we recompress the tarball after deleting unused vendored files from it. I spent a lot of time on a version/prototype that does everything (downloading, decompression, tar extraction, deleting unused files, reproducible tar recreation and finally recompression) via stdin but eventually had to scratch that. GNU tar does not allow to create a tarball just from stdin, nixpkgs' stdenv isn't built with stdin/stdout/pipes in mind, and things a lot of other things I probably already forgot. Nonetheless, this version improves multiple things: - No more `mv` (used to be multiple, not just ours, since fetchzip had some as well) - No more `rm` to get rid of the extracted files before recompressing. Instead, we simply don't extract them in the first place (thanks to tar's --exlude). - No more "no space left" that happened due to `downloadToTemp = true;`. - Multithreaded xz decompression, since that commit is still in staging-next. We cannot use stdenv's unpackFile() because that does not allow us to specify the needed --exclude (and --strip-components=1 if we don't want to rely on glob matching). The hash changed because we now have a static base directory ("source") in the tarball, instead of whatever upstream provided us with (e.g. "chromium-120.0.6099.129"). (cherry picked from commit e15783154fb13819d8a149e5df0a0d3412e73f97) emilylange2024-01-055-40/+51
* Merge pull request #278743 from NixOS/backport-278656-to-release-23.11•••[Backport release-23.11] jujutsu: 0.12.0 -> 0.13.0Nick Cao2024-01-051-3/+3
|\
| * jujutsu: 0.12.0 -> 0.13.0•••Diff: https://github.com/martinvonz/jj/compare/v0.12.0...v0.13.0 Changelog: https://github.com/martinvonz/jj/blob/v0.13.0/CHANGELOG.md Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com> (cherry picked from commit 20b9368af24df0e1a21ad3ffe26785704160ce82) origin/backport-278656-to-release-23.11Muhammad Falak R Wani2024-01-041-3/+3
* | Merge pull request #278764 from NixOS/backport-278422-to-release-23.11•••[Backport release-23.11] dataexplorer: 3.8.0 -> 3.8.3Nick Cao2024-01-051-2/+2
|\ \
| * | dataexplorer: 3.8.0 -> 3.8.3•••(cherry picked from commit 025e631d48ceef759fb331ae4fe01df71e7f0efd) origin/backport-278422-to-release-23.11R. Ryantm2024-01-041-2/+2
* | | Merge pull request #278716 from NixOS/backport-278686-to-release-23.11•••[Backport release-23.11] fastnetmon-advanced: 2.0.356 -> 2.0.357Nick Cao2024-01-051-2/+2
|\ \ \
| * | | fastnetmon-advanced: 2.0.356 -> 2.0.357•••(cherry picked from commit f5889a24725494298e1a983209f9bddae2884c14) Yureka2024-01-041-2/+2
* | | | Merge pull request #278942 from NixOS/backport-275459-to-release-23.11•••[Backport release-23.11] chromium: drop inactive maintainers, CODEOWNERS: init chromiumEmily2024-01-053-17/+11
|\ \ \ \
| * | | | chromium: remove maintainer handles from README.md, mention electron•••Specifically the maintainers section is quite outdated and prone to get out of sync with whatever primary data we have (mostly meta.maintainers) in each derivation. In an attempt to lower the risk of ending up out of sync again, we simply remove the maintainer handles. Also adds a mention for the newly from source built electron variant, as almost everything except `upstream-info.nix` bumps will trigger electron rebuilds as well. And lastly, removes mentions of `chromium{Beta,Dev}` and the accompanying `google-chrome-{beta,dev}, that have been removed a few months ago. I might look into reworking bigger parts of the README.md in the future, but this honestly isn't that high of a priority for me for now. (cherry picked from commit cdf5db87d48a1264b9ce68cb1755fe696a9e6713) emilylange2024-01-051-15/+7
| * | | | CODEOWNERS: init chromium•••(cherry picked from commit ff1380cb3a936bc84d04059ca842af957f3ab513) emilylange2024-01-051-0/+2
| * | | | chromium: drop inactive maintainers•••Our ./maintainers/README.md has a section titled "How to lose maintainer status", which describes an "inactivity measure": Maintainers how haven't reacted to "package-related notifications" for more than 3 months can be removed. All those 4 maintainers that are getting dropped as part of this commit haven't responded to any such notifications (mostly review pings) for at least 3 months. (cherry picked from commit 477e7d6b60e817661632ff3a8aaf2e39c4cceadc) emilylange2024-01-051-2/+2
|/ / / /
* | | | wavebox: 10.119.8-2 -> 10.120.10-2•••(cherry picked from commit 496cf63f74d45e5d64165be4d1756e930cbe6b00) Martin Wimpress2024-01-051-2/+2
* | | | Merge pull request #278813 from NixOS/backport-278608-to-release-23.11•••[Backport release-23.11] python3Packages.datadog: unbreak, run subset of testsMartin Weinelt2024-01-051-2/+2
|\ \ \ \
| * | | | python3Packages.datadog: unbreak, run subset of tests•••(cherry picked from commit f69a31614e0d6865f3c87ae6fcad10edac66a70e) Jonathan Ringer2024-01-051-2/+2
|/ / / /
* | | | Merge pull request #278792 from NixOS/backport-273125-to-release-23.11•••[Backport release-23.11] workstyle, dconf, rnix-lsp, marksman, macchanger, restic: add meta.mainProgramWeijia Wang2024-01-055-0/+5
|\ \ \ \
| * | | | feat(workstyle,dconf,rnix-lsp,marksman,macchanger,restic): add meta.mainProgram•••(cherry picked from commit a66dd462a826c9248ed25f5a93a2376d39375d81) Milo Moisson2024-01-045-0/+5
|/ / / /
* | | | Merge pull request #278075 from risicle/ris-clickhouse-23.10.5.20-r23.11•••[23.11] clickhouse: 23.10.3.5 -> 23.10.5.20Thomas Gerbet2024-01-041-2/+2
|\ \ \ \ | |_|/ / |/| | |
| * | | clickhouse: 23.10.3.5 -> 23.10.5.20Robert Scott2024-01-011-2/+2
* | | | Merge pull request #278724 from NixOS/backport-278548-to-release-23.11•••[Backport release-23.11] upx: 4.2.1 -> 4.2.2Nick Cao2024-01-041-2/+3
|\ \ \ \ | |_|_|/ |/| | |
| * | | upx: 4.2.1 -> 4.2.2•••(cherry picked from commit 5bf965b8ada4bd70486859366eea00bf51d95190) origin/backport-278548-to-release-23.11Paul Meyer2024-01-041-2/+3
| | |/ | |/|
* | | Merge pull request #278721 from NixOS/backport-276254-to-release-23.11•••[Backport release-23.11] signal-desktop: 6.42.0 -> 6.42.1Weijia Wang2024-01-041-2/+2
|\ \ \
| * | | signal-desktop: 6.42.0 -> 6.42.1•••(cherry picked from commit b0e580bfc4ec59a093d8772b35ac8094bfa5a102) R. Ryantm2024-01-041-2/+2
| |/ /
* | | Merge pull request #278521 from NixOS/backport-274967-to-release-23.11•••[Backport release-23.11] opera: 105.0.4970.21 -> 106.0.4998.19Nick Cao2024-01-041-2/+2
|\ \ \
| * | | opera: 105.0.4970.21 -> 106.0.4998.19•••(cherry picked from commit 0e4794c53335b96d6816d55ee9382d83a6ebdc53) origin/backport-274967-to-release-23.11R. Ryantm2024-01-031-2/+2
* | | | Merge pull request #278683 from NixOS/backport-276677-to-release-23.11•••[Backport release-23.11] asterisk: 20.5.1 -> 20.5.2Nick Cao2024-01-041-6/+6
|\ \ \ \ | |_|/ / |/| | |
| * | | asterisk: 20.5.1 -> 20.5.2•••(cherry picked from commit 0b927023711a020faae86c1f728c0230864482d7) origin/backport-276677-to-release-23.11R. Ryantm2024-01-041-6/+6
* | | | fastnetmon-advanced: 2.0.353 -> 2.0.356 (#278685)•••(cherry picked from commit e2505c88ae8d7ca3786b9342bbc7eff6a1df6afa) Co-authored-by: Yureka <yuka@yuka.dev>github-actions[bot]2024-01-041-2/+2
* | | | llvmPackages_{16,17,git}.lldb: tell cc-wrapper about libclang*.so•••It appears that LLVM's build system no longer sets the executable's rpath to include the faux resource root we pass in, so we need to make sure cc-wrapper does this. (cherry picked from commit 3c049266e7ae0110e49d9cd7a618b0dc82f9845e) sternenseemann2024-01-041-0/+5
* | | | llvmPackages_{14,15,16,17,git}.lldb: unify lua and python path patch•••(cherry picked from commit 21269ffbf6b6eb0385ad2829e5421e1bfd0ad9e1) Semion Nadezhdin2024-01-0410-97/+5
|/ / /
* | | Merge pull request #275312 from nbraud/nixos/wpa_supplicant/backport•••nixos/wpa_supplicant: Ensure the generated config isn't world-readableMaciej Krüger2024-01-042-0/+12
|\ \ \
| * | | nixos/wpa_supplicant: Ensure the generated config isn't world-readable•••Otherwise, `environmentFile` cannot be used to pass secrets in. (cherry picked from commit a351c9b530bd7bd385c4f0e89606e09f46f50829) nicoo2023-12-192-0/+12
* | | | Merge pull request #277908 from NixOS/backport-185044-to-release-23.11•••[Backport release-23.11] armitage: init at unstable-2022-12-05Emily Trau2024-01-041-0/+145
|\ \ \ \
| * | | | armitage: init at unstable-2022-12-05•••(cherry picked from commit f53ec63c6a5cf6cc184d929e460d992e8960040c) Emily Trau2023-12-311-0/+145
* | | | | Merge pull request #278595 from NixOS/backport-277335-to-release-23.11•••[Backport release-23.11] build-support/buildenv: Hoist builder instantiationadisbladis2024-01-041-7/+7
|\ \ \ \ \
| * | | | | build-support/buildenv: Hoist builder instantiation•••(cherry picked from commit dda7578745d1d5eddf70068a4a161b24fbe17751) origin/backport-277335-to-release-23.11adisbladis2024-01-031-7/+7
|/ / / / /
* | | | | Merge pull request #278073 from NixOS/backport-263279-to-release-23.11•••[Backport release-23.11] openresty: 1.21.4.1 -> 1.21.4.3Thomas Gerbet2024-01-041-2/+2
|\ \ \ \ \
| * | | | | openresty: 1.21.4.1 -> 1.21.4.3•••(cherry picked from commit 23a4b38ac8d2d0d12e0256dbb15ccc3c8f622fb4) Konstantin Alekseev2024-01-011-2/+2
* | | | | | Merge pull request #278317 from NixOS/backport-274863-to-release-23.11•••[Backport release-23.11] chromium: use llvm 17Emily2024-01-033-25/+3
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | |
| * | | | | chromium: use llvm 17•••(cherry picked from commit 930e3e5be6ee955ba77bc77409644696208888ab) Yureka2024-01-023-25/+3
* | | | | | Merge pull request #278296 from NixOS/backport-273066-to-release-23.11•••[Backport release-23.11] jujutsu: 0.11.0 -> 0.12.0Nick Cao2024-01-031-3/+3
|\ \ \ \ \ \
| * | | | | | jujutsu: 0.11.0 -> 0.12.0•••Diff: https://github.com/martinvonz/jj/compare/v0.11.0...v0.12.0 Changelog: https://github.com/martinvonz/jj/blob/v0.12.0/CHANGELOG.md Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com> (cherry picked from commit 6aa4df08f3ebed6f31bcc13c06d71e2addbae291) origin/backport-273066-to-release-23.11Muhammad Falak R Wani2024-01-021-3/+3
* | | | | | | Merge pull request #278316 from NixOS/backport-278159-to-release-23.11•••[Backport release-23.11] fish: 3.6.4 -> 3.7.0Nick Cao2024-01-031-3/+4
|\ \ \ \ \ \ \
| * | | | | | | fish: add changelog url•••(cherry picked from commit 9d7aa349df459d0b00dd31e5c5cc8420312e630e) origin/backport-278159-to-release-23.11Adam Stephens2024-01-021-0/+1
| * | | | | | | fish: add adamcstephens as maintainer•••(cherry picked from commit e0cfeb8a137721e3560145968f0184827d40100f) Adam Stephens2024-01-021-1/+1
| * | | | | | | fish: 3.6.4 -> 3.7.0•••(cherry picked from commit fe9849404a8e7f6db136d8a620ce505a7fac5889) Adam Stephens2024-01-021-2/+2
| | |/ / / / / | |/| | | | |
* | | | | | | Merge pull request #278504 from NixOS/backport-273694-to-release-23.11•••[Backport release-23.11] home-manager: 2023-09-14 -> unstable-2023-12-31Nick Cao2024-01-031-3/+3
|\ \ \ \ \ \ \
| * | | | | | | home-manager: 2023-09-14 -> unstable-2023-12-31•••(cherry picked from commit 00ae1b6c9314b01b86b15976a52d0dafee73667c) origin/backport-273694-to-release-23.11R. Ryantm2024-01-031-3/+3
* | | | | | | | Merge pull request #278445 from NixOS/backport-269598-to-release-23.11•••[Backport release-23.11] difftastic: 0.52.0 -> 0.53.0Nick Cao2024-01-032-50/+242
|\ \ \ \ \ \ \ \