Nix Hackers | 963 Members | |
| For people hacking on the Nix package manager itself | 203 Servers |
| Sender | Message | Time |
|---|---|---|
| 15 Nov 2024 | ||
| * Running it again with that flag. For what it's worth, when I built locally and used
| 19:31:58 | |
Weird that in the internal-json log output I can see \nFor full logs, run '\u001b[1mnix log /nix/store/w9nxvfann68v2am1kym3hkyxmc4a8p1f-cuda12.6-onnxruntime-1.20.0-unstable-2024-11-14.drv, but that in the log immediately above that output never shows up. | 19:32:36 | |
| 16 Nov 2024 | ||
| 10:47:55 | ||
In reply to @mightyiam:matrix.orgIt did some light digging in lldb here, but wasn't able to get to the root cause. https://github.com/NixOS/nix/issues/11286#issuecomment-2398006754. It's a use-after-free | 10:53:48 | |
| 18:22:43 | ||
| 18 Nov 2024 | ||
| 08:03:09 | ||
| https://github.com/NixOS/nixpkgs/pull/356983 fix darwin nix static build | 15:11:38 | |
| 16:27:06 | ||
| 19:36:58 | ||
| 19 Nov 2024 | ||
In reply to @connorbaker:matrix.orgwe have fixed this bug in lix | 08:51:37 | |
it clumsily parses anything that says @nix in the output as json, which is used for setPhase inside stdenv that shows the phase in the progress bar, like, unpackPhase, etc | 08:52:48 | |
| this used to cause the entire build to fail | 08:53:07 | |
| https://gerrit.lix.systems/c/lix/+/2057 probably | 08:53:43 | |
| got this for the first time today
| 16:22:34 | |
| Hi. Wanted to share a pretty curious finding. I've been looking into speeding up the flex generated lexer by using the full scanner tables I've run into a funny issue, which really looks like either a
Looks like the generated scanner trips up lots of other cases with comments as well. Has anyone else previously looked into using full scanners previously? | 22:37:43 | |
| * Hi. Wanted to share a pretty curious finding. I've been looking into speeding up the flex generated lexer by using the full scanner tables I've run into a funny issue, which really looks like either a
Looks like the generated scanner trips up lots of other cases with comments as well. Has anyone else previously looked into using full scanners? | 22:43:58 | |
| 20 Nov 2024 | ||
| 00:59:23 | ||
| 01:39:00 | ||
| Hey, I was looking into https://github.com/NixOS/nix/issues/11903 and I'm super confused -- where IS system? The author looks at it with a double dash, but even without it I can't find any reference to system either as a LongFlag or as a Setting | 01:41:07 | |
| 01:41:50 | ||
Actually, I'm really confused on how --help decides to display anything | 01:44:59 | |
~everything in man nix.conf can be used as an --<option> | 01:54:42 | |
and system is documented there | 01:55:08 | |
Unless I'm confused, I meant in the nix repo, where is system as a flag that can be accepted defined. For example, man nix.conf tells me that it takes allow-unsafe-native-code-during-evaluation as a flag, which is defined here: https://github.com/NixOS/nix/blob/32becc87fef7340600df75ffed6e7c6bc56aa827/src/libexpr/eval-settings.hh#L54 | 01:58:17 | |
The only mention is https://github.com/NixOS/nix/blob/32becc87fef7340600df75ffed6e7c6bc56aa827/src/libmain/common-args.cc , where it's mentioning erasing system for nix-env but I don't know where to find that? | 01:59:34 | |
| right, sorry. my guess is that it's not an eval setting and is somewhere else since it's not strictly about eval(?), but I'm afraid I don't know where in the codebase it is exactly | 01:59:44 | |
Do you think you could point me to the entrypoint for --help in nix3 commands? I see showManPage, but as far as I can tell that's just nix2 | 02:02:20 | |
In reply to @dre:imad.nyc system is defined in the libstore settings: https://github.com/NixOS/nix/blob/32becc87fef7340600df75ffed6e7c6bc56aa827/src/libstore/globals.hh#L188 | 05:48:53 | |
In reply to @dre:imad.nyc showHelp: https://github.com/NixOS/nix/blob/32becc87fef7340600df75ffed6e7c6bc56aa827/src/nix/main.cc#L242 | 05:55:23 | |
| 06:57:39 | ||