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

23 lines
551 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub }:
2018-07-31 21:48:54 +00:00
buildGoPackage rec {
pname = "mustache-go";
2020-07-16 08:14:58 +00:00
version = "1.2.0";
2018-07-31 21:48:54 +00:00
goPackagePath = "github.com/cbroglie/mustache";
src = fetchFromGitHub {
owner = "cbroglie";
repo = "mustache";
rev = "v${version}";
2020-07-16 08:14:58 +00:00
sha256 = "0mnh5zbpfwymddm1dppg9i9d1r8jqyg03z2gl6c5a8fgbrnxpjvc";
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 ];
maintainers = [ maintainers.Zimmi48 ];
};
}