summary refs log blame commit diff
path: root/pkgs/tools/system/consul-template/default.nix
blob: c04b69675808a332a3aebda2edf7b7ecc61bcba0 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                        
 
                   
                            
                     
 
                         

                             
                        
                                                                   

    
                                                                       




                                                                        
                    
                                                               


                                                                             
                                                               

    
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "consul-template";
  version = "0.25.2";

  src = fetchFromGitHub {
    owner = "hashicorp";
    repo = "consul-template";
    rev = "v${version}";
    sha256 = "sha256-r9/CxXFaeod48NgOFWhl+axiNqjaU+RIEHI71fmYzP8=";
  };

  vendorSha256 = "sha256-DLjaDj3fJYl5ICxJuaCLKdd/AfwfUIM8teJLs3a2MHo=";

  # consul-template tests depend on vault and consul services running to
  # execute tests so we skip them here
  doCheck = false;

  meta = with lib; {
    homepage = "https://github.com/hashicorp/consul-template/";
    description = "Generic template rendering and notifications with Consul";
    platforms = platforms.linux ++ platforms.darwin;
    license = licenses.mpl20;
    maintainers = with maintainers; [ cpcloud pradeepchhetri ];
  };
}