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

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

38 lines
985 B
Nix
Raw Normal View History

2022-07-09 01:02:07 +02:00
{ lib
, buildDotnetModule
, fetchFromGitHub
, dotnetCorePackages
2021-10-19 18:02:53 +02:00
, altcoinSupport ? false }:
2020-08-10 20:52:53 +02:00
2021-10-19 18:02:53 +02:00
buildDotnetModule rec {
2020-08-10 20:52:53 +02:00
pname = "btcpayserver";
2022-07-13 12:22:41 +02:00
version = "1.6.1";
2020-08-10 20:52:53 +02:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
2022-07-13 12:22:41 +02:00
sha256 = "sha256-lz42emfVBWas1A2YuEkjGAX8V1Qe2YAZMEgMYwIhhKM=";
2020-08-10 20:52:53 +02:00
};
2021-10-19 18:02:53 +02:00
projectFile = "BTCPayServer/BTCPayServer.csproj";
nugetDeps = ./deps.nix;
2020-08-10 20:52:53 +02:00
2022-02-01 15:25:52 +01:00
dotnet-runtime = dotnetCorePackages.aspnetcore_6_0;
2020-08-10 20:52:53 +02:00
2022-02-01 15:25:52 +01:00
buildType = if altcoinSupport then "Altcoins-Release" else "Release";
2020-08-10 20:52:53 +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/{BTCPayServer,btcpayserver} || :
2021-10-19 18:02:53 +02:00
'';
2020-08-10 20:52:53 +02:00
meta = with lib; {
description = "Self-hosted, open-source cryptocurrency payment processor";
homepage = "https://btcpayserver.org";
maintainers = with maintainers; [ kcalvinalvin erikarvstedt ];
2021-10-19 18:02:53 +02:00
license = licenses.mit;
2022-07-09 01:02:07 +02:00
platforms = platforms.linux ++ platforms.darwin;
2020-08-10 20:52:53 +02:00
};
}