aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/tools/quicktemplate/default.nix
blob: 8f75540f3a617fcb5fda234d9f2378d72d1b8fba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage {
  pname = "quicktemplate";
  version = "unstable-2019-07-08";
  goPackagePath = "github.com/valyala/quicktemplate";
  goDeps = ./deps.nix;

  src = fetchFromGitHub {
    owner = "valyala";
    repo = "quicktemplate";
    rev = "840e9171940bbc80bb1b925c880664cababae022";
    sha256 = "1pimf5bwivklsr438if6l8by34gr48a05gl6hq07cvc8z6wl01m2";
  };

  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 ];
  };
}