nixpkgs/pkgs/development/tools/quicktemplate/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
578 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-05-17 23:52:24 +00:00
buildGoModule rec {
pname = "quicktemplate";
2022-04-17 21:25:20 +00:00
version = "1.7.0";
2018-05-17 23:52:24 +00:00
src = fetchFromGitHub {
owner = "valyala";
repo = "quicktemplate";
rev = "v${version}";
2022-04-17 21:25:20 +00:00
sha256 = "0xzsvhpllmzmyfg8sj1dpp02826j1plmyrdvqbwryzhf2ci33nqr";
2018-05-17 23:52:24 +00:00
};
vendorSha256 = null;
meta = with lib; {
2018-05-17 23:52:24 +00:00
homepage = "https://github.com/valyala/quicktemplate";
description = "Fast, powerful, yet easy to use template engine for Go";
license = licenses.mit;
maintainers = with maintainers; [ Madouura ];
mainProgram = "qtc";
2018-05-17 23:52:24 +00:00
};
}