From f4c4822443a5bd975520a66456c7efb93752e5ab Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Sat, 26 Aug 2023 13:17:36 +0200 Subject: [PATCH] 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. --- pkgs/development/tools/sq/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/sq/default.nix b/pkgs/development/tools/sq/default.nix index eb2f96e34fd5..058c84b3c910 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;