about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRaito Bezarius <masterancpp@gmail.com>2023-08-26 13:17:36 +0200
committerRaito Bezarius <masterancpp@gmail.com>2023-08-26 13:19:48 +0200
commitf4c4822443a5bd975520a66456c7efb93752e5ab (patch)
treef97167623ececf03af1ed8f6aa486e1cd8582dd7
parentfcbcedcca51849747be54d2b02ba2ccb657a9e63 (diff)
sq: 0.40.0 -> 0.42.0
https://github.com/neilotoole/sq/releases/tag/v0.41.0
https://github.com/neilotoole/sq/releases/tag/v0.42.0

As the default version for Go is < 1.21, this did not build anymore.

Switched to `buildGo121Module` in the meantime.
-rw-r--r--pkgs/development/tools/sq/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/tools/sq/default.nix b/pkgs/development/tools/sq/default.nix
index eb2f96e34fd5e..058c84b3c910b 100644
--- a/pkgs/development/tools/sq/default.nix
+++ b/pkgs/development/tools/sq/default.nix
@@ -1,17 +1,17 @@
-{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, sq }:
+{ lib, buildGo121Module, fetchFromGitHub, installShellFiles, testers, sq }:
 
-buildGoModule rec {
+buildGo121Module rec {
   pname = "sq";
-  version = "0.40.0";
+  version = "0.42.0";
 
   src = fetchFromGitHub {
     owner = "neilotoole";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-TD9brvMxU2gdiOiJPs/M5PmiwFd99P9YohCG7bcjLas=";
+    hash = "sha256-IL3041R35WL+sYCpTjfPXUpd7GTcQoaILYBufwH1WoE=";
   };
 
-  vendorHash = "sha256-/LsQfhU5+Wobts6R3cJDJaKSvPUqWNBpx9ILgNC2otc=";
+  vendorHash = "sha256-ez5qhGgK0q3oDT0L0Fs+JKJjMbNoJukzCoir2a9ro48=";
 
   proxyVendor = true;