mustache-go: 1.3.0 -> 1.3.1

This commit is contained in:
Aaron Jheng 2022-05-02 03:36:38 +00:00
parent f678ad7c7a
commit 1432f1d4c9
No known key found for this signature in database
GPG key ID: F6A547A869D050A3

View file

@ -1,18 +1,21 @@
{ lib, buildGoPackage, fetchFromGitHub }: { lib, buildGoModule, fetchFromGitHub }:
buildGoPackage rec { buildGoModule rec {
pname = "mustache-go"; pname = "mustache-go";
version = "1.3.0"; version = "1.3.1";
goPackagePath = "github.com/cbroglie/mustache";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "cbroglie"; owner = "cbroglie";
repo = "mustache"; repo = "mustache";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-Z33hHOcx2K34v3j/qFD1VqeuUaqH0jqoMsVZQnLFx4U="; fetchSubmodules = true;
sha256 = "sha256-3mGxbgxZFL05ZKn6T85tYYjaEkEJbIUkCwlNJTwoIfc=";
}; };
vendorSha256 = "sha256-FYdsLcW6FYxSgixZ5US9cBPABOAVwidC3ejUNbs1lbA=";
ldflags = [ "-s" "-w" ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/cbroglie/mustache"; homepage = "https://github.com/cbroglie/mustache";
description = "The mustache template language in Go"; description = "The mustache template language in Go";