nixpkgs/pkgs/development/tools/mustache-go/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
586 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub }:
2018-07-31 21:48:54 +00:00
buildGoPackage rec {
pname = "mustache-go";
2021-09-23 04:48:54 +00:00
version = "1.3.0";
2018-07-31 21:48:54 +00:00
goPackagePath = "github.com/cbroglie/mustache";
src = fetchFromGitHub {
owner = "cbroglie";
repo = "mustache";
rev = "v${version}";
2021-09-23 04:48:54 +00:00
sha256 = "sha256-Z33hHOcx2K34v3j/qFD1VqeuUaqH0jqoMsVZQnLFx4U=";
2018-07-31 21:48:54 +00:00
};
meta = with lib; {
homepage = "https://github.com/cbroglie/mustache";
2018-07-31 21:48:54 +00:00
description = "The mustache template language in Go";
license = [ licenses.mit ];
2021-10-21 12:27:13 +00:00
maintainers = with maintainers; [ Zimmi48 ];
mainProgram = "mustache";
2018-07-31 21:48:54 +00:00
};
}