at 18.09-beta 25 lines 736 B view raw
1{ stdenv, buildGoPackage, fetchFromGitHub }: 2 3buildGoPackage rec { 4 name = "quicktemplate-unstable-${version}"; 5 version = "2018-04-30"; 6 goPackagePath = "github.com/valyala/quicktemplate"; 7 goDeps = ./deps.nix; 8 9 src = fetchFromGitHub { 10 owner = "valyala"; 11 repo = "quicktemplate"; 12 rev = "a91e0946457b6583004fbfc159339b8171423aed"; 13 sha256 = "1z89ang5pkq5qs5b2nwhzyrw0zjlsas539l9kix374fhka49n8yc"; 14 }; 15 16 enableParallelBuilding = true; 17 18 meta = with stdenv.lib; { 19 homepage = "https://github.com/valyala/quicktemplate"; 20 description = "Fast, powerful, yet easy to use template engine for Go"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ chiiruno ]; 23 platforms = platforms.all; 24 }; 25}