| 3 Nov 2025 |
maralorn | Ah, oh well. Looks like sterni already fixed that 2h ago. | 08:12:05 |
ivy | https://hydra.nixos.org/build/312074469 this is a bit odd | 10:43:41 |
ivy | missing stdint.h | 10:43:51 |
ivy | odd why its not | 10:43:54 |
Alyssa Ross | https://github.com/NixOS/nixpkgs/pull/458027 | 10:45:14 |
Alyssa Ross | was discussed in here a few hours ago | 10:45:23 |
ivy | ahh oops | 10:45:36 |
ivy | i was like what the hell why so many core things failing | 10:46:45 |
ivy | incredible regression tho actually crazy | 11:44:47 |
K900 | Nah that's normal | 11:48:18 |
K900 | This is like every other staging cycle | 11:48:24 |
ivy | okay damn, didn’t know that, despite the fact i’ve been on nixos for like 6 years i’ve never thought about staging | 11:50:19 |
ivy | until using darwin and having to patch everything | 11:50:32 |
Grimmauld (any/all) | staging is a special kind of fun. Its often not viable to test stuff against staging directly, because dependencies are not built yet. And picking to master for a test still runs the risk of oversights. Or, the fact staging is run by like 5-10 people that need to sleep eventually | 12:09:29 |
Grimmauld (any/all) | We had terrible cycles before. This one shouldn't be too bad, considering it is freeze month | 12:10:14 |
K900 | OK who's doing ocaml stuff these days | 12:10:17 |
Grimmauld (any/all) | oh god screw that | 12:10:31 |
K900 | I need to find whoever is doing it | 12:10:44 |
K900 | And drag them into this room | 12:10:47 |
K900 | Like now | 12:10:49 |
K900 |  Download image.png | 12:10:59 |
Grimmauld (any/all) | i looked at z3 ocaml a while back, never again | 12:10:58 |
K900 | Because I am looking at this | 12:11:02 |
K900 | And I am not understand | 12:11:05 |
K900 | And I do not want to be understand | 12:11:11 |
Grimmauld (any/all) | Ah i see | 12:14:12 |
Grimmauld (any/all) | i think what you want is:
let
inherit (callPackage ./generic.nix args) src version library_deps;
in
lib.throwIf
(
lib.versionAtLeast ocaml.version "5.0" && !lib.versionAtLeast version "0.23"
|| lib.versionAtLeast ocaml.version "5.1" && !lib.versionAtLeast version "0.25"
|| lib.versionAtLeast ocaml.version "5.2" && !lib.versionAtLeast version "0.26.2"
|| lib.versionAtLeast ocaml.version "5.3" && !lib.versionAtLeast version "0.27"
|| lib.versionAtLeast ocaml.version "5.4" && !lib.versionAtLeast version "0.28"
)
"ocamlformat ${version} is not available for OCaml ${ocaml.version}"
buildDunePackage {
pname = "ocamlformat";
inherit src version;
minimalOCamlVersion = "4.08";
| 12:15:17 |
Grimmauld (any/all) | (+ formatting) | 12:15:24 |
Grimmauld (any/all) | not sure | 12:15:28 |
| StepBroBD joined the room. | 12:15:39 |