2022-07-08 23:02:07 +00:00
|
|
|
{ lib
|
|
|
|
, buildDotnetModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, dotnetCorePackages
|
2021-10-19 16:02:53 +00:00
|
|
|
, altcoinSupport ? false }:
|
2020-08-10 18:52:53 +00:00
|
|
|
|
2021-10-19 16:02:53 +00:00
|
|
|
buildDotnetModule rec {
|
2020-08-10 18:52:53 +00:00
|
|
|
pname = "btcpayserver";
|
2022-08-19 13:26:08 +00:00
|
|
|
version = "1.6.9";
|
2020-08-10 18:52:53 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-08-19 13:26:08 +00:00
|
|
|
sha256 = "sha256-kN+/TQCc35iI8gr9pYlW4B3B6WasGyKQffkJ8rMffVk=";
|
2020-08-10 18:52:53 +00:00
|
|
|
};
|
|
|
|
|
2021-10-19 16:02:53 +00:00
|
|
|
projectFile = "BTCPayServer/BTCPayServer.csproj";
|
|
|
|
nugetDeps = ./deps.nix;
|
2020-08-10 18:52:53 +00:00
|
|
|
|
2022-02-01 14:25:52 +00:00
|
|
|
dotnet-runtime = dotnetCorePackages.aspnetcore_6_0;
|
2020-08-10 18:52:53 +00:00
|
|
|
|
2022-02-01 14:25:52 +00:00
|
|
|
buildType = if altcoinSupport then "Altcoins-Release" else "Release";
|
2020-08-10 18:52:53 +00:00
|
|
|
|
2022-07-08 23:02:07 +00:00
|
|
|
# macOS has a case-insensitive filesystem, so these two can be the same file
|
2022-01-11 23:21:04 +00:00
|
|
|
postFixup = ''
|
2022-07-08 23:02:07 +00:00
|
|
|
mv $out/bin/{BTCPayServer,btcpayserver} || :
|
2021-10-19 16:02:53 +00:00
|
|
|
'';
|
2020-08-10 18:52:53 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Self-hosted, open-source cryptocurrency payment processor";
|
|
|
|
homepage = "https://btcpayserver.org";
|
2022-06-26 17:12:18 +00:00
|
|
|
maintainers = with maintainers; [ kcalvinalvin erikarvstedt ];
|
2021-10-19 16:02:53 +00:00
|
|
|
license = licenses.mit;
|
2022-07-08 23:02:07 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2020-08-10 18:52:53 +00:00
|
|
|
};
|
|
|
|
}
|