about summary refs log tree commit diff
path: root/pkgs/applications/blockchains/torq
diff options
context:
space:
mode:
authorMartin Milata <martin@martinmilata.cz>2023-02-13 14:58:17 +0100
committerMartin Milata <martin@martinmilata.cz>2023-02-13 14:58:50 +0100
commitbb62992d4e3a50d590c27c8bbdc480b63b35f20a (patch)
tree2c99b800ee7df51aa3717b71109913e9e22ea93d /pkgs/applications/blockchains/torq
parent8c9a8fa6e37b7f4c941362a9190ba251d712788c (diff)
downloadnixlib-bb62992d4e3a50d590c27c8bbdc480b63b35f20a.tar
nixlib-bb62992d4e3a50d590c27c8bbdc480b63b35f20a.tar.gz
nixlib-bb62992d4e3a50d590c27c8bbdc480b63b35f20a.tar.bz2
nixlib-bb62992d4e3a50d590c27c8bbdc480b63b35f20a.tar.lz
nixlib-bb62992d4e3a50d590c27c8bbdc480b63b35f20a.tar.xz
nixlib-bb62992d4e3a50d590c27c8bbdc480b63b35f20a.tar.zst
nixlib-bb62992d4e3a50d590c27c8bbdc480b63b35f20a.zip
torq: 0.17.3 -> 0.18.17
Diffstat (limited to 'pkgs/applications/blockchains/torq')
-rw-r--r--pkgs/applications/blockchains/torq/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/blockchains/torq/default.nix b/pkgs/applications/blockchains/torq/default.nix
index bda5fbd036a2..657e5b0e3ffa 100644
--- a/pkgs/applications/blockchains/torq/default.nix
+++ b/pkgs/applications/blockchains/torq/default.nix
@@ -6,20 +6,20 @@
 
 let
   pname = "torq";
-  version = "0.17.3";
+  version = "0.18.17";
 
   src = fetchFromGitHub {
     owner = "lncapital";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-fqHJZi1NQCrZqsa+N+FVYZ8s9o0D555Sqn5qNlJ1MmI=";
+    hash = "sha256-xiA66yGo8b1+zZ7jQ7SFOtNPmqbdna7fUCT21uibrIM=";
   };
 
   web = buildNpmPackage {
     pname = "${pname}-frontend";
     inherit version;
     src = "${src}/web";
-    npmDepsHash = "sha256-8mUfTFzPjQlQvhC3zZf+WruDBkYnmGt3yckNi0CPWs0=";
+    npmDepsHash = "sha256-/7x5RWYIB5BChYMnMuFVVaZd0pVkew4i4QrF7hSFnCM=";
 
     # copied from upstream Dockerfile
     npmInstallFlags = [ "--legacy-peer-deps" ];
@@ -36,7 +36,7 @@ in
 buildGoModule rec {
   inherit pname version src;
 
-  vendorHash = "sha256-HETN2IMnpxnTyg6bQDpoD0saJu+gKocdEf0VzEi12Gs=";
+  vendorHash = "sha256-bvisI589Gq9IdyJEqI+uzs3iDPOTUkq95P3n/KoFhF0=";
 
   subPackages = [ "cmd/torq" ];