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:
commit
fbb1f7acf6
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue