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

23 lines
545 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-05-18 01:52:24 +02:00
buildGoModule rec {
pname = "quicktemplate";
version = "1.6.3";
2018-05-18 01:52:24 +02:00
src = fetchFromGitHub {
owner = "valyala";
repo = "quicktemplate";
rev = "v${version}";
sha256 = "mQhrQcKRDtcXha7FIwCIUwWfoPGIJ5YLbA4HdatIdn8=";
2018-05-18 01:52:24 +02:00
};
vendorSha256 = null;
meta = with lib; {
2018-05-18 01:52:24 +02:00
homepage = "https://github.com/valyala/quicktemplate";
description = "Fast, powerful, yet easy to use template engine for Go";
license = licenses.mit;
maintainers = with maintainers; [ chiiruno ];
};
}