| 25 Feb 2024 |
Emma [it/its] ⚡️ | question, is there a way to enabled PublishTrimmed in nix? | 07:54:32 |
Emma [it/its] ⚡️ | i tried to build a dotnet app with nix and got error : PublishTrimmed is implied by native compilation and cannot be disabled. | 07:55:27 |
Emma [it/its] | (there was, forgot to close my question) | 20:30:50 |
| 9 Mar 2024 |
| Qyriad joined the room. | 00:38:57 |
| amiablechief joined the room. | 03:13:17 |
| 12 Mar 2024 |
| kedde joined the room. | 10:28:28 |
| 14 Mar 2024 |
| Federico Damián Schonborn left the room. | 02:04:19 |
| countoren changed their display name from oren to countoren. | 14:09:39 |
| NixOS Moderation Botchanged room power levels. | 18:44:50 |
| 15 Mar 2024 |
| @grahamc:nixos.org joined the room. | 23:29:39 |
| 16 Mar 2024 |
| aidalgol joined the room. | 05:24:19 |
| mj joined the room. | 13:59:53 |
| 19 Mar 2024 |
| NixOS Moderation Botchanged room power levels. | 00:30:15 |
| 21 Mar 2024 |
| NixOS Moderation Botchanged room power levels. | 18:03:09 |
| @grahamc:nixos.org left the room. | 20:10:19 |
| 26 Mar 2024 |
| cblacktech joined the room. | 02:02:11 |
| 31 Mar 2024 |
| aidalgol left the room. | 09:54:40 |
| 3 Apr 2024 |
| maka_77x joined the room. | 14:08:01 |
| 9 Apr 2024 |
| admin (Moderation Team) joined the room. | 08:09:09 |
| hexa joined the room. | 08:12:59 |
| admin (Moderation Team) set the room name to "Nix + dotnet". | 08:14:05 |
| Room Avatar Renderer. | 08:14:34 |
| admin (Moderation Team) left the room. | 08:18:48 |
| hexa left the room. | 08:19:03 |
| 13 Apr 2024 |
| real_z2 joined the room. | 16:03:53 |
| Elijah Immer joined the room. | 19:32:01 |
Elijah Immer | I've been trying to package this dotnet program https://github.com/bcssov/IronyModManager, and it has a private dependency I haven't been able to get to work. The link to the NuGet is https://github.com/bcssov/IronyModManager/files/7798143/CWTools.Irony-Private.0.4.0-alpha8.zip.
I cannot figure how how to get it to fetch the other deps, and let me manually specify this one.
The closest I got was adding replacing deps.nix with
(fetchNuGet {
pname = "CWTools.Irony-Private";
version = "0.4.0-alpha8";
url = "https://github.com/bcssov/IronyModManager/files/7798143/CWTools.Irony-Private.0.4.0-alpha8.zip";
sha256 = "sha256-HO+9XhH2EvoLz4XeII7NGPeCvcldPa6gOx9bfje4i+c="; })
but then it failed to even build the fetch-deps script, and I'm pretty sure that's not how it works.
I think all I need is to generate the other deps and have it ignore this one, but I'm not sure how to do that. Any ideas?
| 19:58:16 |
Elijah Immer | * I've been trying to package this dotnet program https://github.com/bcssov/IronyModManager, and it has a private dependency I haven't been able to get to work. The link to the NuGet is https://github.com/bcssov/IronyModManager/files/7798143/CWTools.Irony-Private.0.4.0-alpha8.zip.
I cannot figure how how to get it to fetch the other deps, and let me manually specify this one.
The closest I got was adding replacing deps.nix with
[(fetchNuGet {
pname = "CWTools.Irony-Private";
version = "0.4.0-alpha8";
url = "https://github.com/bcssov/IronyModManager/files/7798143/CWTools.Irony-Private.0.4.0-alpha8.zip";
sha256 = "sha256-HO+9XhH2EvoLz4XeII7NGPeCvcldPa6gOx9bfje4i+c="; })]
but then it failed to even build the fetch-deps script, and I'm pretty sure that's not how it works.
I think all I need is to generate the other deps and have it ignore this one, but I'm not sure how to do that. Any ideas?
| 19:59:06 |
| 15 Apr 2024 |
| l0b0 joined the room. | 10:54:22 |
l0b0 | Hi all, I could use some help getting this package to run the upstream tests. Basically, I don't know how I should map their tests to Nix. | 10:56:06 |