mustache-go: init at 1.0.1 (#44175)

This commit is contained in:
Théo Zimmermann 2018-07-31 23:48:54 +02:00 committed by xeji
parent bb0cb24de2
commit fd03ba85cc
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "mustache-go-${version}";
version = "1.0.1";
goPackagePath = "github.com/cbroglie/mustache";
src = fetchFromGitHub {
owner = "cbroglie";
repo = "mustache";
rev = "v${version}";
sha256 = "1aywj4fijsv66n6gjiz3l8g1vg0fqzwbf8dcdcgfsvsdb056p90v";
};
meta = with stdenv.lib; {
homepage = https://github.com/cbroglie/mustache;
description = "The mustache template language in Go";
license = [ licenses.mit ];
maintainers = [ maintainers.Zimmi48 ];
};
}

View File

@ -14870,6 +14870,8 @@ with pkgs;
mustache-spec = callPackage ../data/documentation/mustache-spec { };
mustache-go = callPackage ../development/tools/mustache-go { };
myrica = callPackage ../data/fonts/myrica { };
nafees = callPackage ../data/fonts/nafees { };