1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-08 13:34:14 +00:00
nixpkgs/pkgs/development/tools/quicktemplate/default.nix

23 lines
657 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub }:
2018-05-18 00:52:24 +01:00
2019-08-13 22:52:01 +01:00
buildGoPackage {
pname = "quicktemplate";
version = "unstable-2019-07-08";
2018-05-18 00:52:24 +01:00
goPackagePath = "github.com/valyala/quicktemplate";
goDeps = ./deps.nix;
2018-05-18 00:52:24 +01:00
src = fetchFromGitHub {
owner = "valyala";
repo = "quicktemplate";
rev = "840e9171940bbc80bb1b925c880664cababae022";
sha256 = "1pimf5bwivklsr438if6l8by34gr48a05gl6hq07cvc8z6wl01m2";
2018-05-18 00:52:24 +01:00
};
meta = with stdenv.lib; {
homepage = "https://github.com/valyala/quicktemplate";
description = "Fast, powerful, yet easy to use template engine for Go";
license = licenses.mit;
maintainers = with maintainers; [ chiiruno ];
};
}