Merge pull request #152729 from erikarvstedt/btcpayserver-1.3.7
btcpayserver: 1.3.6 -> 1.3.7
This commit is contained in:
commit
85072c431a
2 changed files with 4 additions and 4 deletions
|
@ -3,13 +3,13 @@
|
||||||
|
|
||||||
buildDotnetModule rec {
|
buildDotnetModule rec {
|
||||||
pname = "btcpayserver";
|
pname = "btcpayserver";
|
||||||
version = "1.3.6";
|
version = "1.3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = pname;
|
owner = pname;
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-8SWbbdPx/cC7EWTkSbB/YqR13jaL76fFIjHPGL4rFyk=";
|
sha256 = "sha256-W8WRw42hMNUaQZlfrl73REGIvLcj6Vso9Axx53ENkx0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
projectFile = "BTCPayServer/BTCPayServer.csproj";
|
projectFile = "BTCPayServer/BTCPayServer.csproj";
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env nix-shell
|
#!/usr/bin/env nix-shell
|
||||||
#!nix-shell -i bash -p coreutils curl jq common-updater-scripts dotnet-sdk_3 git gnupg nix
|
#!nix-shell -i bash -p coreutils curl jq common-updater-scripts dotnet-sdk_3 git gnupg nixFlakes
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
# This script uses the following env vars:
|
# This script uses the following env vars:
|
||||||
|
@ -17,7 +17,7 @@ scriptDir=$(cd "${BASH_SOURCE[0]%/*}" && pwd)
|
||||||
nixpkgs=$(realpath "$scriptDir"/../../../../..)
|
nixpkgs=$(realpath "$scriptDir"/../../../../..)
|
||||||
|
|
||||||
evalNixpkgs() {
|
evalNixpkgs() {
|
||||||
nix eval --raw "(with import \"$nixpkgs\" {}; $1)"
|
nix eval --impure --raw --expr "(with import \"$nixpkgs\" {}; $1)"
|
||||||
}
|
}
|
||||||
|
|
||||||
getRepo() {
|
getRepo() {
|
||||||
|
|
Loading…
Reference in a new issue