3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/quicktemplate/default.nix

26 lines
736 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub }:
2018-05-18 00:52:24 +01:00
buildGoPackage rec {
name = "quicktemplate-unstable-${version}";
version = "2018-09-06";
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 = "dc50ff9977a68a543145ce34e0e0030bebcc89be";
sha256 = "1980q2c5w4jhrlhf1pimc8yrkz005x3jbsi7hk4hnx6d5iy5lmb6";
2018-05-18 00:52:24 +01:00
};
enableParallelBuilding = true;
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 ];
platforms = platforms.all;
};
}