about summary refs log tree commit diff
path: root/pkgs/applications/blockchains
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2021-11-16 16:27:23 +0100
committerGitHub <noreply@github.com>2021-11-16 16:27:23 +0100
commit16637085007f49a4bc3d422fa99f4012cd2393bf (patch)
tree54acf3941fa89aca4379699eb20d82109384080a /pkgs/applications/blockchains
parent5e39986fe26e20207aebd46ce4b1f12ec0488aa1 (diff)
parent5913fdbd0bf1a77811f262df1af3f3dc1b6e44df (diff)
Merge pull request #142468 from prusnak/dotnet-update
dotnet-sdk_3: 3.1.19 -> 3.1.21 + dotnet-sdk_5: 5.0.10 -> 5.0.12
Diffstat (limited to 'pkgs/applications/blockchains')
-rwxr-xr-xpkgs/applications/blockchains/wasabibackend/create_deps.sh4
-rw-r--r--pkgs/applications/blockchains/wasabibackend/deps.nix17
2 files changed, 9 insertions, 12 deletions
diff --git a/pkgs/applications/blockchains/wasabibackend/create_deps.sh b/pkgs/applications/blockchains/wasabibackend/create_deps.sh
index 79bc88ca8996e..764bf2106ef9d 100755
--- a/pkgs/applications/blockchains/wasabibackend/create_deps.sh
+++ b/pkgs/applications/blockchains/wasabibackend/create_deps.sh
@@ -1,5 +1,5 @@
 #! /usr/bin/env nix-shell
-#! nix-shell -i bash -p dotnet-sdk_3 jq xmlstarlet curl nixfmt
+#! nix-shell -i bash -p dotnet-sdk_3 jq xmlstarlet curl nixpkgs-fmt
 set -euo pipefail
 
 # Run this script to generate deps.nix
@@ -95,4 +95,4 @@ echo $DEPS_FOOTER >&6
 
 exec 6>&-
 
-nixfmt "$deps_file"
+nixpkgs-fmt "$deps_file"
diff --git a/pkgs/applications/blockchains/wasabibackend/deps.nix b/pkgs/applications/blockchains/wasabibackend/deps.nix
index 47ee3f9bfe599..d558fa8715371 100644
--- a/pkgs/applications/blockchains/wasabibackend/deps.nix
+++ b/pkgs/applications/blockchains/wasabibackend/deps.nix
@@ -1,17 +1,14 @@
 { fetchurl }:
 let
   nugetUrlBase = "https://www.nuget.org/api/v2/package";
-  fetchNuGet = { name, version, sha256 }:
-    fetchurl {
-      inherit sha256;
-      url = "${nugetUrlBase}/${name}/${version}";
-    };
-in [
+  fetchNuGet = { name, version, sha256 }: fetchurl { inherit sha256; url = "${nugetUrlBase}/${name}/${version}"; };
+in
+[
 
   (fetchNuGet {
     name = "microsoft.aspnetcore.app.runtime.linux-x64";
-    version = "3.1.19";
-    sha256 = "19z4zrchaxcz0a33c33n1qd11z9khj4323nfzsbzah0xxkkj8ka8";
+    version = "3.1.21";
+    sha256 = "056g9nv8a7n8zdbgzmyzmn3pbg52yq2kv5d1rcp7h6plwzgpiwql";
   })
   (fetchNuGet {
     name = "microsoft.aspnetcore.jsonpatch";
@@ -95,8 +92,8 @@ in [
   })
   (fetchNuGet {
     name = "microsoft.netcore.app.runtime.linux-x64";
-    version = "3.1.19";
-    sha256 = "10c9bq1z8j173n9jzamgplbxq101yscwdhksshn1ybisn7cr5g0h";
+    version = "3.1.21";
+    sha256 = "13692wqcww0w6x4nhyxpxwprdg6mx9xmlvv38m6fvp6g0m27r43v";
   })
   (fetchNuGet {
     name = "microsoft.netcore.dotnetapphost";