evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / go / gotemplate / package.nix
blob9e748ba3d8e832c435cca7bc1ca814679fc98c19
1 { lib, buildGo123Module, fetchFromGitHub }:
3 buildGo123Module rec {
4   pname = "gotemplate";
5   version = "3.9.2";
7   src = fetchFromGitHub {
8     owner = "coveooss";
9     repo = pname;
10     rev = "refs/tags/v${version}";
11     hash = "sha256-7FJejArGpnmkAzbN+2BOcewLdlcsh8QblOOZjFu+uSA=";
12   };
14   vendorHash = "sha256-378oodyQG50l7qkTO5Ryt1NjFBbYW2n9by+ALNfTggI=";
16   # This is the value reported when running `gotemplate --version`,
17   # see https://github.com/coveooss/gotemplate/issues/262
18   ldflags = [ "-X main.version=${version}" ];
20   meta = with lib; {
21     description = "CLI for go text/template";
22     mainProgram = "gotemplate";
23     changelog = "https://github.com/coveooss/gotemplate/releases/tag/v${version}";
24     license = licenses.mit;
25     maintainers = with maintainers; [ giorgiga ];
26   };