Wolfgang Walther
5c697b8aea
ci/eval: reduce closure size
...
`procps` pulls in 180 MB of systemd, but busybox also provides `kill`.
`busybox` also ships `time`, so no need for that extra dependency.
Using `nativeBuildInputs` pulls in all the -dev outputs of the listed
packages - which we don't need. We only need to run these tools, thus
map to their bin outputs.
Brings down the closure size from 500+ MB to 193 MB for the Eval job.
This probably saves ~10 seconds for the job.
2025-08-09 11:55:03 +02:00
Wolfgang Walther
cb527a04e0
ci/eval: return min memory in megabyte
...
No need to return bytes in these files. Also busybox has problems to
render `free -b` with sizes > 100 GB properly in the next commit,
leading to extraction errors with awk.
2025-08-07 17:14:05 +02:00
Wolfgang Walther
0a59445722
ci/eval: fix min-free-swap report
...
This was checking the wrong condition, likely from a copy&pasto.
2025-08-07 17:14:03 +02:00
0fd9e64375
tombi: 0.4.37 -> 0.4.42 ( #431660 )
...
Co-authored-by: psibi <psibi2000@gmail.com >
2025-08-07 14:19:02 +00:00
Gliczy and GitHub
fad04064f2
signal-desktop-bin: 7.59.0 -> 7.64.0 ( #422163 )
...
* signal-desktop-bin: 7.59.0 -> 7.64.0
* signal-desktop-bin(aarch64-linux): 7.59.0 -> 7.64.0
* signal-desktop-bin(darwin): 7.59.0 -> 7.64.0
2025-08-07 15:14:28 +01:00
Sandro and GitHub
ed3d57951e
dnscontrol: 4.22.0 -> 4.23.0 ( #431606 )
2025-08-07 15:44:10 +02:00
c31d1cdefa
artichoke: 0-unstable-2025-07-28 -> 0-unstable-2025-08-03 ( #431729 )
...
Co-authored-by: kachick <kachick@users.noreply.github.com >
2025-08-07 13:39:44 +00:00
Bobby Rong and GitHub
88dd970777
.github/labeler.yml: label cinnamon itself ( #431750 )
2025-08-07 21:38:07 +08:00
Adam C. Stephens and GitHub
36e995e337
python3Packages.sabctools: 8.2.5 -> 8.2.6 ( #431682 )
2025-08-07 09:36:46 -04:00
Bobby Rong
a3ed12cbe2
.github/labeler.yml: label cinnamon itself
...
See 2c551ea2d3 .
2025-08-07 21:31:25 +08:00
Gaétan Lepage and GitHub
19585ab6ae
zed-editor: 0.197.6 -> 0.198.2 ( #431644 )
2025-08-07 15:13:47 +02:00
Bobby Rong and GitHub
ef4edf25a2
Cinnamon updates 2025-08-06 ( #431487 )
2025-08-07 21:12:23 +08:00
Sandro and GitHub
d00a33c9df
nixos/dnsmasq: make dnsmasq --test actually test the config file ( #426004 )
2025-08-07 15:08:19 +02:00
taku0 and GitHub
af6547d5e3
thunderbird-esr-bin-unwrapped: 140.1.0esr -> 140.1.1esr ( #431525 )
2025-08-07 21:58:48 +09:00
sternenseemann
fb94e68811
chroma: 2.19.0 -> 2.20.0
...
https://github.com/alecthomas/chroma/releases/tag/v2.20.0
2025-08-07 14:45:31 +02:00
438ddeb13e
xenia-canary: 0-unstable-2025-07-27 -> 0-unstable-2025-08-06 ( #431735 )
...
Co-authored-by: tuxy <tuxy@users.noreply.github.com >
2025-08-07 12:40:20 +00:00
Paul Meyer and GitHub
5721192a4f
deepsource: 0.9.0 -> 0.10.0 ( #431269 )
2025-08-07 14:38:55 +02:00
Paul Meyer and GitHub
a31a336f3f
trayscale: 0.18.1 -> 0.18.3 ( #431650 )
2025-08-07 14:38:28 +02:00
R. Ryantm
c7d7fc5bd0
xenia-canary: 0-unstable-2025-07-27 -> 0-unstable-2025-08-06
2025-08-07 12:18:19 +00:00
Fabian Affolter and GitHub
bd74a8e8c5
python313Packages.readabilipy: disable failing tests ( #431705 )
2025-08-07 14:16:38 +02:00
Fabian Affolter and GitHub
81ef642264
cf-hero: init at 1.0.4 ( #423414 )
2025-08-07 14:16:04 +02:00
R. Ryantm
6bf4c20403
artichoke: 0-unstable-2025-07-28 -> 0-unstable-2025-08-03
2025-08-07 11:58:10 +00:00
Adam C. Stephens and GitHub
a904e15683
vscode-extensions.elixir-lsp.vscode-elixir-ls: 0.28.0 -> 0.29.2 ( #431667 )
2025-08-07 07:50:20 -04:00
Silvan Mosberger and GitHub
d3256e5539
stdenv: Replace "// optionalAttrs" with nullable attr name ( #430969 )
2025-08-07 13:45:39 +02:00
b2ae22d7a7
mitra: 4.6.0 -> 4.7.0 ( #430373 )
...
Co-authored-by: haruki7049 <tontonkirikiri@gmail.com >
2025-08-07 11:44:31 +00:00
Naïm Camille Favier and GitHub
e4b933ddb4
nixos/resolveconf: not resetting package ( #426557 )
2025-08-07 13:42:58 +02:00
Yuriy Taraday
1d4489dc32
stdenv: Replace "// optionalAttrs" with nullable attr name
...
As in https://github.com/NixOS/nixpkgs/pull/430132 , it saves a lot of
set allocations and merge operations, but makes code harder to read.
I've tried introducing a function like this to make code cleaner, but it
increases number of envs and space taken by them significantly:
optionalAttr = cond: name: if cond then name else null;
I've also tried applying this logic to the section with isDarwin, but
it makes things measurably worse for x86_64-linux eval.
2025-08-07 13:39:40 +02:00
datafoo
6682e3e582
vscode-extensions.elixir-lsp.vscode-elixir-ls: 0.28.0 -> 0.29.2
2025-08-07 13:30:34 +02:00
Petr Zahradnik and Peter Hoeg
c02976ad5f
linkchecker: modernize, add PDF support
2025-08-07 13:22:48 +02:00
Petr Zahradnik and Peter Hoeg
19f5098f8b
linkchecker: 10.2.1 -> 10.6.0
2025-08-07 13:22:48 +02:00
Maximilian Bosch and GitHub
4d9b55329a
Merge: nixos test driver: drop wrong assertion ( #431708 )
2025-08-07 13:19:00 +02:00
taku0 and GitHub
76e9d22fb2
windsurf: 1.11.2 -> 1.11.3 ( #431476 )
2025-08-07 20:09:14 +09:00
Fabian Affolter and GitHub
945e7720ef
python313Packages.reolink-aio: 0.14.5 -> 0.14.6 ( #431694 )
2025-08-07 13:00:46 +02:00
Fabian Affolter and GitHub
ed93f1c93d
python313Packages.deebot-client: 13.5.0 -> 13.6.0 ( #431695 )
2025-08-07 13:00:29 +02:00
Fabian Affolter and GitHub
f8e29a8710
python313Packages.inkbird-ble: 1.0.0 -> 1.1.0 ( #431697 )
2025-08-07 13:00:03 +02:00
Fabian Affolter and GitHub
e6a38c87b0
python313Packages.logutils: disable redis tests for all platforms ( #431709 )
2025-08-07 12:59:34 +02:00
Felix Bargfeldt and GitHub
13f642a4d9
chhoto-url: 6.2.11 -> 6.2.12 ( #431633 )
2025-08-07 12:55:56 +02:00
isabel and GitHub
281eb01683
nixos/snips-sh: init ( #390655 )
2025-08-07 11:16:11 +01:00
Fabian Affolter and GitHub
a6eebe702c
python313Packages.types-html5lib: 1.1.11.20250516 -> 1.1.11.20250708 ( #423562 )
2025-08-07 12:11:12 +02:00
Fabian Affolter and GitHub
b420538fb3
python312Packages.banks: 2.1.3 -> 2.2.0 ( #428136 )
2025-08-07 12:10:39 +02:00
Gaétan Lepage and GitHub
63b55614da
python3Packages.torch-bin: 2.7.1 -> 2.8.0 ( #431698 )
2025-08-07 12:07:22 +02:00
Gaétan Lepage and GitHub
db34663834
vimPlugins.tiny-glimmer-nvim: init at 2025-07-01 ( #431654 )
2025-08-07 12:07:11 +02:00
Fabian Affolter
476c08beff
python313Packages.logutils: disable redis tests for all platforms
2025-08-07 12:00:35 +02:00
Jacek Galowicz
6fe959f8ce
nixos test driver: drop wrong assertion
2025-08-07 11:59:39 +02:00
Gaétan Lepage and GitHub
b14a5f5b45
python3Packages.cnvkit: fix build error and failing tests ( #431215 )
2025-08-07 11:44:26 +02:00
Sandro and GitHub
8998e096cf
sunsetr: init at 0.6.1 ( #428580 )
2025-08-07 11:43:38 +02:00
André Silva and GitHub
ea9dfa82da
claude-code: 1.0.69 -> 1.0.70 ( #431662 )
2025-08-07 10:42:51 +01:00
Fabian Affolter
244248f8a1
python313Packages.readabilipy: disable failing tests
2025-08-07 11:35:10 +02:00
Alexis Praga
d63981ee56
python3Packages.cnvkit: fix tests and build error.
...
Add patch for pytorch.
Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com >
2025-08-07 11:32:35 +02:00
Fabian Affolter and GitHub
e07409d81c
python313Packages.google-cloud-securitycenter: 1.38.1 -> 1.39.0 ( #430758 )
2025-08-07 11:22:26 +02:00