| 12 Oct 2025 |
| @midirhee12:tchncs.de removed their profile picture. | 21:27:44 |
| @midirhee12:tchncs.de removed their display name midirhee12. | 21:28:18 |
| @midirhee12:tchncs.de left the room. | 21:28:29 |
| 18 Oct 2025 |
| @ihar.hrachyshka:matrix.org left the room. | 00:14:02 |
| 19 Oct 2025 |
| helle (just a stray cat girl) joined the room. | 16:33:04 |
| 21 Oct 2025 |
陈浩南 | I found a really weird issue in bootstrap process. When nix store containing dot . , bootstrap failed at python3-minimal, since its output containing reference to bootstrap-tools and strictDeps disallow this. Just remove the dot in store path, everything works again. This is relevant issue. https://github.com/NixOS/nixpkgs/issues/454199 | 13:27:32 |
Sandro 🐧 | Can someone take a look if the hook change in https://github.com/NixOS/nixpkgs/pull/451140 is correct? | 14:31:37 |
emily | I predict it's a regular expression issue :) | 23:58:42 |
| 22 Oct 2025 |
| raphi-debug joined the room. | 10:06:16 |
| 28 Oct 2025 |
| connor (burnt/out) (UTC-8) changed their profile picture. | 02:19:32 |
| connor (burnt/out) (UTC-8) changed their profile picture. | 02:20:11 |
| 31 Oct 2025 |
| Theo Paris joined the room. | 01:55:58 |
| connor (burnt/out) (UTC-8) changed their profile picture. | 03:16:14 |
| connor (burnt/out) (UTC-8) changed their display name from connor (he/him) (UTC-7) to connor (burnt/out) (UTC-7). | 03:16:46 |
| 2 Nov 2025 |
| connor (burnt/out) (UTC-8) changed their display name from connor (burnt/out) (UTC-7) to connor (burnt/out) (UTC-8). | 08:12:45 |
| amadaluzia joined the room. | 22:34:23 |
| 4 Nov 2025 |
| ivy joined the room. | 02:51:55 |
ivy | why do check and installCheck phases happen in that order and is there any dependency on the check results for building packages generally? | 02:59:32 |
Winter | installCheck needs to be done after install because it depends on the ~final version of $out, and no, there’s generally not… checkPhase is like unit tests and the like | 03:01:43 |
ivy | so there wouldnt be any reason why we couldn't move checks into a sub derivation, that depends on the parent derivations output | 03:07:40 |
ivy | aka | 03:07:58 |
ivy | llvm is llvm and llvm.checks,
and all things that depend on llvm have a checks output that depends on llvms checks, so checks can be parrallelised? | 03:08:36 |
ivy | instead of if a checkPhase fails on hydra it messes up the entire build process and shortcircuits all dependencies on it, | 03:09:35 |
ivy | and also takes a long time | 03:09:42 |
ivy |  Download image.png | 03:15:37 |
ivy | like this | 03:15:38 |
Winter | can’t easily go from $out to a test-ready build env though | 03:17:30 |
Winter | that’s the issue | 03:17:33 |
Winter | lots of tests depend on the build environment being set up | 03:17:39 |
Winter | and artifacts being already built etc… | 03:17:49 |