| 6 Aug 2025 |
Corngood | I have a few dotnet PRs that could use reviews:
https://github.com/NixOS/nixpkgs/pull/420536 https://github.com/NixOS/nixpkgs/pull/431056 https://github.com/NixOS/nixpkgs/pull/431468
I'd rather not merge them without another set of eyes, so if anyone feels like taking a look, that would be great. I usually ping '@NixOS/dotnet', so if anyone would like to be notified of dotnet infrastructure changes, feel free to open a PR adding yourself to that team (maintainers/team-list.nix).
| 18:17:44 |
GGG | I'll take a look at them soon, sorry I haven't been very active | 18:28:38 |
Samuel | I've opened a PR to add myself to the team: https://github.com/NixOS/nixpkgs/pull/431566 | 20:02:59 |
Samuel | I will do my best to review changes when I have the time. | 20:05:36 |
Corngood | Okay, thanks! I appreciate whatever time any of you can spare. | 20:06:38 |
| 8 Aug 2025 |
| 0x4A6F joined the room. | 06:29:00 |
oatmealraisin | Howdy all, I'm trying to build a fairly large ASP.NET/Blazor application using a flake. I'm using buildDotnetModule, but the build is complaining about tools in .config/dotnet-tools.json. Where should I add these dependencies to the buildDotnetModule invokation? using buildDotnetGlobalTool and placing the derivation in buildInputs and nativeBuildInputs doesn't work | 21:11:57 |
oatmealraisin | currently the build process fails at the dotnetConfigureHook | 21:16:09 |
Corngood | fetch-deps should do a tool restore. Are you running that to make your deps.json? | 21:29:23 |
oatmealraisin | No, I don't really know how passthru works. Right now I'm doing dotnet restore <csproj> --packages out; nuget-to-json out > deps.json | 21:35:01 |
oatmealraisin | Actually, I just read up on it and I'm getting this error upon runnin result, mv: cannot create regular file '/nix/store/79w8gxjdfwahlzy79zxyzhsp0nrls06j-source/deps.nix': Permission denied | 22:00:20 |
Corngood | You can't run it through a flake. You'd have to do it in impure mode, so the output is writeable. | 23:31:46 |
| 9 Aug 2025 |
oatmealraisin | Ok, good to know. I'm running nix build .#default.passthru.fetch-deps; ./result, and passing --impure doesn't change anything. I'll try to make a non-flake build to make this deps.json file | 00:38:20 |
oatmealraisin | Made a quick default.nix with the main buildDotnetModule, no more tools issues, thanks for the help! | 00:46:50 |
oatmealraisin | Would it be worth it to add this info to the documentation? | 00:56:23 |