Nix + dotnet | 126 Members | |
| 24 Servers |
| Sender | Message | Time |
|---|---|---|
| 25 Jan 2026 | ||
| (this is outside of makeDotnetMdoule) | 18:08:47 | |
| Where are the nupkgs coming from? It'll need to be in nuget.config | 18:16:18 | |
| output of buildDotnetModule with pack=true, that im then zipping up | 18:16:51 | |
| (as i already had the zipping stuff, as i was already using the output to publish directly to nuget.org, but currently trying to work around the 15-30min delay in dev cycles by shoving them in a directory and adding that as a global NuGet source) | 18:17:50 | |
| so current state of things is that i have a derivation that contains my entire repository's projects as .nupkg files in a directory, and im adding the nix store path to my nuget.cofig directly | 18:21:01 | |
the part i dont understand, is why its able to find them with dotnet package search, but then fails to restore in that same environment if you actually try to use it? | 18:54:52 | |
unsure why, but using this as an intermediary derivation does the trick | 20:06:40 | |
| Strange. Maybe if you compare that intermediary source to the nix store one? | 20:53:49 | |
| 26 Jan 2026 | ||
| FYI nuget likes to cache things, even if you select a local directory as the package source. So if you don't change the version it might not pick up new changes. | 18:52:05 | |
| * FYI nuget likes to cache things, even if you select a local directory as the package source. So if you don't change the version number of a package it might not pick up new changes. I ran I to that before. | 18:52:38 | |
| * | 18:52:52 | |
| 1 Feb 2026 | ||
| 10:42:22 | ||
| 4 Feb 2026 | ||
| im awell are, i was clearing locals before testing | 00:31:29 | |
| in another question: if i have ProjectReferences in a buildDotnetModule, it doesnt inherit dependencies, doe sit? | 00:31:45 | |
| * in another question: if i have ProjectReferences in a buildDotnetModule, it doesnt inherit dependencies, does it? | 00:31:48 | |
fetch-deps isnt picking up any dependencies either | 02:28:40 | |
| 02:29:03 | |
| 13 Feb 2026 | ||
| https://github.com/NixOS/nixpkgs/pull/489952 The February releases include .net 11 preview 1 | 04:08:37 | |
| 10:26:59 | ||
| Could use a review if anyone has time: https://github.com/NixOS/nixpkgs/pull/490215 | 20:35:03 | |
| 15 Feb 2026 | ||
| 21:47:39 | ||
| JamieMagee: I pinged you as I had a similar PR open for a while. I also bump SDK to .NET 10 (so that we won't have to touch this for a while). | 23:25:02 | |
| * JamieMagee: I pinged you as I had a similar PR open. I also bump SDK to .NET 10 (so that we won't have to touch this for a while). | 23:25:14 | |
| My PR: https://github.com/NixOS/nixpkgs/pull/486605 | 23:27:10 | |
| BTW, I am co-maintainer of Python.NET (not just on NixOS) | 23:27:41 | |
| 19 Feb 2026 | ||
| Hello! What exactly should I do if I go to build a derivation and run into this error?
| 19:55:31 | |
Oh it's likely something to do with repeated entries in deps.json - I'll see if regenerating that fixes it! | 20:00:53 | |
| Yep, that was it - Whoops. Oh well, apologies! | 20:02:17 | |
| 21 Feb 2026 | ||
| hm, i wonder why buildDotnetModule would... ignore a deps.json file? | 04:04:30 | |
| particularly, i did the fetch-deps stuff, the deps.json isnt empty, its staged into git, its referenced in my derivation, yet it complains it cant find any dependencies | 04:08:12 | |