Nix + dotnet | 127 Members | |
| 24 Servers |
| Sender | Message | Time |
|---|---|---|
| 24 Dec 2024 | ||
| they will be doing it | 04:38:44 | |
| but they haven't | 04:38:47 | |
In reply to @gggkiller:matrix.org They shouldn't be referenced in the outputs. We don't even symlink libraries from packages at the moment. | 13:21:21 | |
| 25 Dec 2024 | ||
| How does fetch-deps work after running the result, is it supposed to replace the current nugetDeps file with a new one or does it output the code and you have to copy it? | 10:21:57 | |
In reply to @genga898:matrix.orgIt's supposed to replace it | 11:40:40 | |
In reply to @corngood:corngood.comOoh, I thought I had an issue but the package I'm trying to create depends on a release candidate version of avalonia so it keeps failing | 11:43:31 | |
Hello! Does anyone here have a working nix shell configuration for dotnet 8? dotnet run works very easily with the definition of DOTNET_ROOT but when I have a built assembly and just want to start it, I always get an error that libhostfxr.so is not found! | 20:24:32 | |
| Would it be ok to try and override the avalonia package or I may encounter more issues trying to do that? | 20:41:37 | |
In reply to @docbrown101:matrix.orgI have these in my home manager config: https://github.com/GGG-KILLER/nixos-configs/blob/master/hosts%2Fsora%2Fusers%2Fggg%2Fdefault.nix#L175-L178 | 20:46:15 | |
| the bottom two look cursed, why do you need those for? | 20:47:13 | |
| No idea, I got them a while ago from another config and never got around to checking if/why they're needed | 20:57:17 | |
| Was easy enough to keep around so I just did | 20:57:25 | |
| looks like something that could break global.json sdk version selection logic | 20:58:10 | |
| I generally dislike `global.json` and get rid of it whenever I see it so it's fine to me | 21:13:47 | |
| 26 Dec 2024 | ||
| 01:41:20 | ||
| 01:42:03 | ||
| Thank you, but unfortunately that didn't help. I always get the standard error message: Could not start dynamically linked executable: ./Hygrometer.InfluxDB.Collector NixOS cannot run dynamically linked executables intended for generic linux environments out of the box. For more information, see: https://nix.dev/permalink/stub-ld | 10:48:09 | |
| 1 Jan 2025 | ||
| Hey gang, is there a suggested way to migrate a This is mainly in reference to the header(?) comments from a
| 01:05:55 | |
In reply to @whovian9369:matrix.orgUse touch deps.json, change nugetDeps to point to that and then run fetch-deps | 01:09:49 | |
Ah, so fetch-deps is basically looking for a different extension? I'll do so soon then, thank you! | 01:10:29 | |
| Yeah, we changed it to generate JSON files because the new standard in nixpkgs is to not generate code for data | 01:10:55 | |
| It still works with nix files, but it's mainly for compatibility sake | 01:11:10 | |
| Any other file extensions it generates JSON | 01:11:24 | |
| I liked being able to read the deps files as Nix because it's all the same ecosystem, but that makes perfect sense. Thanks! | 01:11:39 | |
| Well, the JSON file isn't *that* different | 01:14:49 | |
| It's just the arguments to `fetchNuGet` | 01:15:01 | |
| Hah, fair | 02:08:47 | |
| Now comes the painful part of changing all of my dotnet self-packages, haha | 02:13:24 | |
| There's the script I wrote to do the treewide change in nixpkgs if you want: https://gist.github.com/GGG-KILLER/3a52e6244bbd14dd38e27f115e0ad2d6 | 02:22:12 | |
In reply to @whovian9369:matrix.orgIt's not actually causing you any immediate problem, is it? deps.nix should still work, including with fetch-deps. | 02:23:21 | |