btcpayserver-altcoins 1.10.2 -> 1.10.3 https://github.com/btcpayserver/btcpayserver/releases attrpath: btcpayserver-altcoins Checking auto update branch... No auto update branch exists Old version 1.10.2" not present in master derivation file with contents: { lib , buildDotnetModule , fetchFromGitHub , dotnetCorePackages , altcoinSupport ? false }: buildDotnetModule rec { pname = "btcpayserver"; version = "1.10.3"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "v${version}"; sha256 = "sha256-a2+Rh+Pxy4pCU9eo4L3986+yVvjrNZY2bFQiUpVuYqM="; }; 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; }; }