2022-07-14 12:49:19 +00:00
|
|
|
{ lib
|
|
|
|
, buildDotnetModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, dotnetCorePackages
|
2021-10-28 06:52:43 +00:00
|
|
|
, altcoinSupport ? false }:
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
buildDotnetModule rec {
|
2020-09-25 04:45:31 +00:00
|
|
|
pname = "btcpayserver";
|
2023-02-22 10:55:15 +00:00
|
|
|
version = "1.7.12";
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-02-22 10:55:15 +00:00
|
|
|
sha256 = "sha256-NRmpKr0lqe2NUlpyzkdtn7nN0rFrZakryNR1WAOzx9Q=";
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
projectFile = "BTCPayServer/BTCPayServer.csproj";
|
|
|
|
nugetDeps = ./deps.nix;
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2022-02-10 20:34:41 +00:00
|
|
|
dotnet-runtime = dotnetCorePackages.aspnetcore_6_0;
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2022-02-10 20:34:41 +00:00
|
|
|
buildType = if altcoinSupport then "Altcoins-Release" else "Release";
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
# macOS has a case-insensitive filesystem, so these two can be the same file
|
2022-01-19 23:45:15 +00:00
|
|
|
postFixup = ''
|
2022-07-14 12:49:19 +00:00
|
|
|
mv $out/bin/{BTCPayServer,btcpayserver} || :
|
2021-10-28 06:52:43 +00:00
|
|
|
'';
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Self-hosted, open-source cryptocurrency payment processor";
|
|
|
|
homepage = "https://btcpayserver.org";
|
2022-07-14 12:49:19 +00:00
|
|
|
maintainers = with maintainers; [ kcalvinalvin erikarvstedt ];
|
2021-10-28 06:52:43 +00:00
|
|
|
license = licenses.mit;
|
2022-07-14 12:49:19 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
}
|