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

23 lines
553 B
Nix
Raw Normal View History

{ lib, stdenv, buildGoModule, fetchFromGitHub }:
2018-05-18 00:52:24 +01:00
buildGoModule rec {
pname = "quicktemplate";
version = "1.6.3";
2018-05-18 00:52:24 +01:00
src = fetchFromGitHub {
owner = "valyala";
repo = "quicktemplate";
rev = "v${version}";
sha256 = "mQhrQcKRDtcXha7FIwCIUwWfoPGIJ5YLbA4HdatIdn8=";
2018-05-18 00:52:24 +01:00
};
vendorSha256 = null;
meta = with lib; {
2018-05-18 00:52:24 +01: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 ];
};
}