Nix + dotnet | 118 Members | |
| 23 Servers |
| Sender | Message | Time |
|---|---|---|
| 14 Dec 2024 | ||
| like all of these: https://github.com/NixOS/nixpkgs/blob/9a5c9fb07412bf180b6c91d12b4bfaa06596f92c/pkgs/development/compilers/dotnet/versions/6.0.nix#L11-L572 | 02:33:21 | |
| STJ if referenced out of band you should update anyway | 02:33:28 | |
| because that gets CVEs often | 02:33:34 | |
| yeah | 02:33:37 | |
| and if you dont update sdk then you wont be able to build anyway | 02:33:46 | |
| but if you reference the SDK one, it'd be stuck on that, wouldn't it? | 02:33:49 | |
| it should be trivial to bump the sdk anyway | 02:33:53 | |
| you can update STJ by just referencing a newer version | 02:34:14 | |
| or so you'd think, there are apparently a few packages where upstream hasn't upgraded yet | 02:34:17 | |
| yeah, but that'd become a patch we'd have to maintain | 02:34:25 | |
| a simple patch, but a patch nonetheless | 02:34:34 | |
| it's effectively the same thing as using a newer gcc version than the upstream maintainer uses | 02:36:14 | |
| which happens all the time? | 02:36:17 | |
| I guess so | 02:38:11 | |
| 13:08:17 | ||
| 17 Dec 2024 | ||
| I'm trying to package a dotnet app for local testing but it tells me that permission is denied, what could be the issue? | 16:30:18 | |
| What's the full error message | 16:32:32 | |
| 18:04:55 | |
*
/nix/store/wlknwwx8f79lq8n07b0xh7ddjrrk191h-dotnet-sdk-8.0.404/share/dotnet/sdk/8.0 | 18:05:14 | |
*
| 18:05:33 | |
| and the code you're using to package said program? | 18:21:39 | |
| * and the code you're using to package said app? | 18:24:00 | |
| 18:24:34 | |
yeah, you shouldn't have that ${src} at the start of projectFile | 18:24:51 | |
the rest seems fine, other than the lack of a version | 18:25:16 | |
| Not really packaging it for nixpkgs, it's an alpha build and I want to test it out locally | 18:26:06 | |
| Does anyone here have tips on updating enough of a Net 7.0 app so it can be built and run with Net 8.0 and/or 9.0? The derivation in question is available at https://github.com/Whovian9369/aaru-nix-flake/blob/main/lts.nix in case it helps. | 21:42:13 | |
| unless the repo is configured otherwise , you could probably use rollForward | 21:42:45 | |
| * unless the repo is configured otherwise , you could probably use rollForward mechanics? | 21:42:53 | |
| ie. try building it under 8/9 and see what happens | 21:43:05 | |