3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #171192 from aaronjheng/mustache-go

mustache-go: 1.3.0 -> 1.3.1
This commit is contained in:
Sandro 2022-05-02 16:09:02 +02:00 committed by GitHub
commit fbb1f7acf6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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