summary refs log blame commit diff
path: root/pkgs/applications/networking/cloudflared/default.nix
blob: 810ea11b017bf054ef3a5c1c962d82ecf84d918f (plain) (tree)
1
2
3
4
5
6
7
8
9
                                        
 
                   
                        
                       



                           
                     
                                                                   

    
                      
 

                  

                                                          
                    
                                                                              
                                                                    

                                  
                                                                    

    
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "cloudflared";
  version = "2021.1.5";

  src = fetchFromGitHub {
    owner  = "cloudflare";
    repo   = "cloudflared";
    rev    = version;
    sha256 = "sha256-nknRQdlYVfqCi9SMVTak615Yn/9N99+zHITDKL5nZ00=";
  };

  vendorSha256 = null;

  doCheck = false;

  buildFlagsArray = "-ldflags=-X main.Version=${version}";

  meta = with lib; {
    description = "CloudFlare Argo Tunnel daemon (and DNS-over-HTTPS client)";
    homepage    = "https://www.cloudflare.com/products/argo-tunnel";
    license     = licenses.unfree;
    platforms   = platforms.unix;
    maintainers = [ maintainers.thoughtpolice maintainers.enorris ];
  };
}