| 30 Mar 2026 |
emily | it doesn't make much sense for the info used by https://github.com/NixOS/nixpkgs/blob/7d983847f0c19127319281055f1e086a04384de5/pkgs/top-level/packages-info.nix and https://github.com/NixOS/nixos-search/blob/7e05acf78305990769523f7670150e9e33f1f8f4/flake-info/src/commands/nixpkgs_info.rs to differ from that used by nix-index | 18:26:49 |
emily | since packages.json from Hydra uses it https://github.com/NixOS/nixpkgs-channels/blob/4762fba469e2baa82f983b262e2c06ac2fdaae67/pkgs/top-level/make-tarball.nix#L106 and nix-index is doing the same essential thing | 18:27:20 |
emily | (er… how did I end up on that old repo) | 18:28:20 |
| 1 Apr 2026 |
| Azad Satkarni changed their display name from 7karni to Azad Satkarni. | 06:40:39 |
| 2 Apr 2026 |
ofalvai | Can I ask someone to restart the Deno jobs in the unstable jobset? Builds failed for 3 out of 4 platforms with various weird reasons | 06:13:33 |
Vladimír Čunát | Done, but this doesn't look like a problem on the infra really. | 06:18:27 |
ofalvai | Thank you! Yeah, I also start to think this is a race condition that I can't trigger in my local builds. Anyway, there is also an update waiting to be merged, maybe it was already fixed upstream
https://github.com/NixOS/nixpkgs/pull/504701 | 06:41:26 |
hexa | 5m late | 15:55:49 |
hexa | Sory | 15:55:52 |
| adamcstephens joined the room. | 17:33:47 |
adamcstephens | looks like maybe we're running out of disk across multiple darwin builders. e.g. this grafana build has failed twice now on different builders due to out of disk errors. https://hydra.nixos.org/build/324117736 | 17:37:21 |
hexa | All the time | 17:48:33 |
adamcstephens | i suspected as much | 17:59:04 |
| 3 Apr 2026 |
| Sigmanificient joined the room. | 12:11:40 |
John Ericson | We realy need to figure out the new hydra deployment plan | 15:27:02 |
John Ericson | there are no migrations needed right now | 15:28:45 |
John Ericson | (I would like to change the schema, but not till after it is deployed) | 15:29:03 |
hexa | I asked about the state of things in hydra-queue-runner and got no great response | 15:29:11 |
John Ericson | I will go check that | 15:29:29 |
John Ericson | hexa (signing key rotation when): indeed I am sorry for missing that earlier | 15:30:41 |
John Ericson | we're ready | 15:30:48 |
hexa |  Download | 19:40:25 |
hexa | noted and queued for later netx week | 19:40:49 |
hexa | Redacted or Malformed Event | 19:40:51 |
John Ericson | thank you! | 19:41:12 |
hexa | https://github.com/NixOS/infra/pull/995/changes/6f516c2209b8ef0c65430cfed8921075801b4d5a | 19:41:19 |
eveeifyeve | This string is wrong: df -k /nix/store | awk 'NR==2 {available=$4; required=100*1024*1024; to_free=required-available; printf \"%.0d\", to_free*1024}' It's supposed to be df -k /nix/store | awk 'NR==2 {available=$4; required=100*1024*1024; to_free=required-available; printf "%.0d\n", to_free*1024} | 21:08:12 |
eveeifyeve | * This string is wrong: df -k /nix/store | awk 'NR==2 {available=$4; required=100*1024*1024; to_free=required-available; printf \"%.0d\", to_free*1024}' It's supposed to be df -k /nix/store | awk 'NR==2 {available=$4; required=100*1024*1024; to_free=required-available; printf "%.0d\n", to_free*1024} as when I try to run this string locally I get:
awk: cmd. line:1: NR==2 {available=$4; required=100*1024*1024; to_free=required-available; printf \"%.0d\", to_free*1024}
awk: cmd. line:1:
| 21:15:00 |
eveeifyeve | * This string is wrong: df -k /nix/store | awk 'NR==2 {available=$4; required=100*1024*1024; to_free=required-available; printf \"%.0d\", to_free*1024}' It's supposed to be df -k /nix/store | awk 'NR==2 {available=$4; required=100*1024*1024; to_free=required-available; printf "%.0d\n", to_free*1024} as when I try to run this string locally I get:
awk: cmd. line:1: NR==2 {available=$4; required=100*1024*1024; to_free=required-available; printf \"%.0d\", to_free*1024}
awk: cmd. line:1: ^ backslash not last character on line
| 21:15:25 |
hexa | they are escapes for the nix string | 21:20:45 |