620eecebfb
GitOrigin-RevId: 2deb07f3ac4eeb5de1c12c4ba2911a2eb1f6ed61
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, buildDotnetModule, fetchFromGitHub, dotnetCorePackages
|
|
, altcoinSupport ? false }:
|
|
|
|
buildDotnetModule rec {
|
|
pname = "btcpayserver";
|
|
version = "1.2.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-vjNJ08twsJ036TTFF6srOGshDpP7ZwWCGN0XjrtFT/g=";
|
|
};
|
|
|
|
projectFile = "BTCPayServer/BTCPayServer.csproj";
|
|
nugetDeps = ./deps.nix;
|
|
|
|
dotnet-sdk = dotnetCorePackages.sdk_3_1;
|
|
dotnet-runtime = dotnetCorePackages.aspnetcore_3_1;
|
|
|
|
dotnetFlags = lib.optionals altcoinSupport [ "/p:Configuration=Altcoins-Release" ];
|
|
|
|
# btcpayserver requires the publish directory as its working dir
|
|
# https://github.com/btcpayserver/btcpayserver/issues/1894
|
|
preInstall = ''
|
|
makeWrapperArgs+=(--run "cd $out/lib/btcpayserver")
|
|
'';
|
|
|
|
postInstall = ''
|
|
mv $out/bin/{BTCPayServer,btcpayserver}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Self-hosted, open-source cryptocurrency payment processor";
|
|
homepage = "https://btcpayserver.org";
|
|
maintainers = with maintainers; [ kcalvinalvin earvstedt ];
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|