Skip to content

Commit

Permalink
gotemplate: 3.11.0 -> 3.12.0 (#362249)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickCao authored Dec 6, 2024
2 parents 183a1fe + 7e495fa commit 6c23e1a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pkgs/by-name/go/gotemplate/package.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
lib,
buildGo123Module,
buildGoModule,
fetchFromGitHub,
}:
buildGo123Module rec {
buildGoModule rec {

pname = "gotemplate";
version = "3.11.0";
version = "3.12.0";

src = fetchFromGitHub {
owner = "coveooss";
repo = "gotemplate";
rev = "refs/tags/v${version}";
hash = "sha256-ohF9NemIXTTzguQ2VfqFt9zeiE4Co+dVux9Kw5cDobs=";
hash = "sha256-XcSlQ0Gw+EW2sJK+M2Sp9pcSSy2wsdRZ3MeFewhx7nw=";
};

vendorHash = "sha256-iNH0YmmZ/Qlc7WDoIbORd+uVg0rbQVKL6hX7YvbL0BE=";
Expand All @@ -21,12 +21,12 @@ buildGo123Module rec {
# see https://github.com/coveooss/gotemplate/issues/262
ldflags = [ "-X main.version=${version}" ];

meta = with lib; {
meta = {
description = "CLI for go text/template";
mainProgram = "gotemplate";
changelog = "https://github.com/coveooss/gotemplate/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ giorgiga ];
license = lib.licenses.mit;
maintainers = [ lib.maintainers.giorgiga ];
};

}

0 comments on commit 6c23e1a

Please sign in to comment.