summary refs log blame commit diff
path: root/pkgs/development/tools/quicktemplate/default.nix
blob: 4fe51d3e046362cc0346c878f10042a98c5a75dc (plain) (tree)
1
2
3
4
5
6
7
8
9
                                        
 
                   
                          
                    
 


                           

                                                            

    

                      
                    



                                                                           

    
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "quicktemplate";
  version = "1.6.3";

  src = fetchFromGitHub {
    owner = "valyala";
    repo = "quicktemplate";
    rev = "v${version}";
    sha256 = "mQhrQcKRDtcXha7FIwCIUwWfoPGIJ5YLbA4HdatIdn8=";
  };

  vendorSha256 = null;

  meta = with 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 ];
  };
}