1{ lib, buildGoModule, fetchFromGitHub }:
2
3buildGoModule rec {
4 pname = "quicktemplate";
5 version = "1.7.0";
6
7 src = fetchFromGitHub {
8 owner = "valyala";
9 repo = "quicktemplate";
10 rev = "v${version}";
11 sha256 = "0xzsvhpllmzmyfg8sj1dpp02826j1plmyrdvqbwryzhf2ci33nqr";
12 };
13
14 vendorHash = null;
15
16 meta = with lib; {
17 homepage = "https://github.com/valyala/quicktemplate";
18 description = "Fast, powerful, yet easy to use template engine for Go";
19 license = licenses.mit;
20 maintainers = with maintainers; [ Madouura ];
21 mainProgram = "qtc";
22 };
23}