nixpkgs/pkgs/applications/blockchains/nbxplorer/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
836 B
Nix
Raw Normal View History

2022-07-09 01:02:07 +02:00
{ lib
, buildDotnetModule
, fetchFromGitHub
, dotnetCorePackages
}:
2020-08-10 19:49:20 +02:00
2021-10-19 16:34:37 +02:00
buildDotnetModule rec {
2020-08-10 19:49:20 +02:00
pname = "nbxplorer";
2022-12-16 13:27:06 +01:00
version = "2.3.54";
2020-08-10 19:49:20 +02:00
src = fetchFromGitHub {
owner = "dgarage";
repo = "NBXplorer";
rev = "v${version}";
2022-12-16 13:27:06 +01:00
sha256 = "sha256-WINanMGAlZioD6XP0xK6H+KTlF/NRMAmhylmRV6y2uI=";
2020-08-10 19:49:20 +02:00
};
2021-10-19 16:34:37 +02:00
projectFile = "NBXplorer/NBXplorer.csproj";
nugetDeps = ./deps.nix;
2020-08-10 19:49:20 +02:00
2022-02-01 15:25:17 +01:00
dotnet-runtime = dotnetCorePackages.aspnetcore_6_0;
2020-08-10 19:49:20 +02:00
2022-07-09 01:02:07 +02:00
# macOS has a case-insensitive filesystem, so these two can be the same file
postFixup = ''
2022-07-09 01:02:07 +02:00
mv $out/bin/{NBXplorer,nbxplorer} || :
2020-08-10 19:49:20 +02:00
'';
meta = with lib; {
description = "Minimalist UTXO tracker for HD Cryptocurrency Wallets";
maintainers = with maintainers; [ kcalvinalvin erikarvstedt ];
2021-10-19 16:34:37 +02:00
license = licenses.mit;
2022-07-09 01:02:07 +02:00
platforms = platforms.linux ++ platforms.darwin;
2020-08-10 19:49:20 +02:00
};
}