lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

mustache-go: init at 1.0.1 (#44175)

authored by

Théo Zimmermann and committed by
xeji
fd03ba85 bb0cb24d

+24
+22
pkgs/development/tools/mustache-go/default.nix
··· 1 + { stdenv, buildGoPackage, fetchFromGitHub }: 2 + 3 + buildGoPackage rec { 4 + name = "mustache-go-${version}"; 5 + version = "1.0.1"; 6 + 7 + goPackagePath = "github.com/cbroglie/mustache"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "cbroglie"; 11 + repo = "mustache"; 12 + rev = "v${version}"; 13 + sha256 = "1aywj4fijsv66n6gjiz3l8g1vg0fqzwbf8dcdcgfsvsdb056p90v"; 14 + }; 15 + 16 + meta = with stdenv.lib; { 17 + homepage = https://github.com/cbroglie/mustache; 18 + description = "The mustache template language in Go"; 19 + license = [ licenses.mit ]; 20 + maintainers = [ maintainers.Zimmi48 ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 14870 14870 14871 14871 mustache-spec = callPackage ../data/documentation/mustache-spec { }; 14872 14872 14873 + mustache-go = callPackage ../development/tools/mustache-go { }; 14874 + 14873 14875 myrica = callPackage ../data/fonts/myrica { }; 14874 14876 14875 14877 nafees = callPackage ../data/fonts/nafees { };