| * 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?
|