From dd47611368abaa2e1e4af701bf7240bc23b4c647 Mon Sep 17 00:00:00 2001 From: Giorgio Gallo Date: Fri, 15 Nov 2024 19:36:15 +0100 Subject: [PATCH] gotemplate: 3.9.2 -> 3.10.1 --- pkgs/by-name/go/gotemplate/package.nix | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/go/gotemplate/package.nix b/pkgs/by-name/go/gotemplate/package.nix index 9e748ba3d8e8..aecef203ec89 100644 --- a/pkgs/by-name/go/gotemplate/package.nix +++ b/pkgs/by-name/go/gotemplate/package.nix @@ -1,17 +1,21 @@ -{ lib, buildGo123Module, fetchFromGitHub }: - +{ + lib, + buildGo123Module, + fetchFromGitHub, +}: buildGo123Module rec { + pname = "gotemplate"; - version = "3.9.2"; + version = "3.10.1"; src = fetchFromGitHub { owner = "coveooss"; - repo = pname; + repo = "gotemplate"; rev = "refs/tags/v${version}"; - hash = "sha256-7FJejArGpnmkAzbN+2BOcewLdlcsh8QblOOZjFu+uSA="; + hash = "sha256-Q/Bqb0wgKzR0WPUHge/hqIvib/TbGxv6s+eEpDLxqPY="; }; - vendorHash = "sha256-378oodyQG50l7qkTO5Ryt1NjFBbYW2n9by+ALNfTggI="; + vendorHash = "sha256-buRCG9I5zltIMTu5SLE98/pQAs3Vlfw4oz2BZXQxUAc="; # This is the value reported when running `gotemplate --version`, # see https://github.com/coveooss/gotemplate/issues/262 @@ -24,4 +28,5 @@ buildGo123Module rec { license = licenses.mit; maintainers = with maintainers; [ giorgiga ]; }; + }