c7f94ff3ce
GitOrigin-RevId: b85ed9dcbf187b909ef7964774f8847d554fab3b
37 lines
986 B
Nix
37 lines
986 B
Nix
{ lib
|
|
, buildDotnetModule
|
|
, fetchFromGitHub
|
|
, dotnetCorePackages
|
|
, altcoinSupport ? false }:
|
|
|
|
buildDotnetModule rec {
|
|
pname = "btcpayserver";
|
|
version = "1.11.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-22JQ8GqMRNfBT2ynyGhJBeGgnyAVYVBa5tUGZsleDP0=";
|
|
};
|
|
|
|
projectFile = "BTCPayServer/BTCPayServer.csproj";
|
|
nugetDeps = ./deps.nix;
|
|
|
|
dotnet-runtime = dotnetCorePackages.aspnetcore_6_0;
|
|
|
|
buildType = if altcoinSupport then "Altcoins-Release" else "Release";
|
|
|
|
# macOS has a case-insensitive filesystem, so these two can be the same file
|
|
postFixup = ''
|
|
mv $out/bin/{BTCPayServer,btcpayserver} || :
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Self-hosted, open-source cryptocurrency payment processor";
|
|
homepage = "https://btcpayserver.org";
|
|
maintainers = with maintainers; [ kcalvinalvin erikarvstedt ];
|
|
license = licenses.mit;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|