Merge pull request #171192 from aaronjheng/mustache-go
mustache-go: 1.3.0 -> 1.3.1
This commit is contained in:
commit
fbb1f7acf6
1 changed files with 9 additions and 6 deletions
|
@ -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";
|
||||||
|
|
Loading…
Reference in a new issue