7 buildDotnetModule rec {
11 src = fetchFromGitHub {
15 sha256 = "sha256-zfL+VoDfICUtw02KeRghaq3XPOa/YnSh8orhqmo3Auo=";
18 projectFile = "NBXplorer/NBXplorer.csproj";
19 nugetDeps = ./deps.nix;
21 dotnet-sdk = dotnetCorePackages.sdk_8_0;
22 dotnet-runtime = dotnetCorePackages.aspnetcore_8_0;
24 # macOS has a case-insensitive filesystem, so these two can be the same file
26 mv $out/bin/{NBXplorer,nbxplorer} || :
30 description = "Minimalist UTXO tracker for HD Cryptocurrency Wallets";
31 maintainers = with maintainers; [ kcalvinalvin erikarvstedt ];
32 license = licenses.mit;
33 platforms = platforms.linux ++ platforms.darwin;
34 mainProgram = "nbxplorer";