mustache-go: 1.3.0 -> 1.3.1

main
Aaron Jheng 2 years ago
parent f678ad7c7a
commit 1432f1d4c9
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3
  1. 15
      pkgs/development/tools/mustache-go/default.nix

@ -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…
Cancel
Save