Nix + dotnet | 126 Members | |
| 24 Servers |
| Sender | Message | Time |
|---|---|---|
| 29 Nov 2024 | ||
In reply to @mattsturg:matrix.org* Might be worth asking/checking upstream how they managed to update if their dependencies still require .NET 8. Looking at the upstream diff I don't see how they brought .NET 8 into the build originally - maybe it's on the ubuntu-latest image? | 08:26:43 | |
| Good idea, I've asked in the nexusmods-app discord if .net8 is intended to be a transitive dep. Unless they make a hotfix release, I think we'll still need a solution for how to package v0.7.0 in nixpkgs though, unless there's a sane way to patch it 🤔 | 10:12:09 | |
Download image.png | 10:18:50 | |
| Apparently I guess this usually a non-issue and fails gracefully with a warning, but in this case the library we're trying to run is failing hard with an error because it expects .net8? | 10:28:56 | |
I haven't looked into this too closely, but do you just need to use combinePackages to combine sdk 8 and 9 or sdk 9 and runtime 8? | 12:24:14 | |
| There are a lot of places where This looks like something else. Like it actually needs the net8 runtime, which is odd. | 13:02:28 | |
Ah, I should have RTFM before asking here! Thanks for the pointer | 17:27:35 | |
| https://nixos.org/manual/nixpkgs/unstable/#packaging-a-dotnet-application | 17:29:12 | |
| PR now up: https://github.com/NixOS/nixpkgs/pull/360174 | 17:54:45 | |
| 1 Dec 2024 | ||
| not sure if its just a me thing, but is Rider broken on unstable currently? | 00:54:04 | |
| i cant open any projects under neither steam-run or plain | 00:54:20 | |
| 01:10:14 | |
| i couldnt find anything on their bug tracker about it | 01:10:24 | |
| can reproduce if i pull Rider from 24.11 | 03:04:16 | |
| okay, importing rider from 24.05 works fine, in comparison | 04:08:23 | |
| so it seems to be an issue with whatever rider version is shipped in 24.11 and unstable | 04:08:52 | |
| 2 Dec 2024 | ||
| 19:59:20 | ||
| https://github.com/NixOS/nixpkgs/pull/360923 Here's a PR that adds dotnet-sdk_9, etc. I intend to backport it to 24.11. I'm curious what people think about sdk/runtime naming. We currently have minor version SDKs that aren't accessible at the top level, e.g. Should we add | 23:02:20 | |
| 3 Dec 2024 | ||
| 01:41:23 | ||
| Just saying hi as a new member here | 01:42:27 | |
In reply to @corngood:corngood.comi think the current system of having those symlink to latest major releases is fine | 06:50:27 | |
| How do you guys install dev certs on your machine for development of Dotnet web apps | 12:27:46 | |
| 4 Dec 2024 | ||
| i dont, i jut get rid of https alltogether | 13:24:57 | |
| dont even need to worry about restricted APIs because browsers treat localhost as always-secure rather than making it conditional on https | 13:25:38 | |
| What is the difference between dotnetCorePackages.dotnet_9.sdk and dotnet-sdk_9? | 19:21:55 | |
| nothing. they're the same package | 19:22:55 | |
| Hm, is there a plan to remove one of them to avoid confusion? | 19:23:26 | |
I originally had it in mind to remove the top level aliases, but now I'm not so sure. I added dotnet-sdk_9 recently to be consistent with the other versions. | 19:25:05 | |
Download image.png | 19:28:09 | |
| There's a bit more of confusion: there's no dotnet-aspnetcore_8 | 19:28:20 | |