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

                                   
                     
                     


                         
                 
                        
                                                                   

    
                                                                      
 
                                     
 
                           
                                                                                   
 

                        


                                              
                    
                                                                                                 
                                                        
                                                    
                                                  

    
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, Security, CoreServices, CoreFoundation }:

rustPlatform.buildRustPackage rec {
  pname = "wrangler";
  version = "1.15.0";

  src = fetchFromGitHub {
    owner = "cloudflare";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-/5iIdEUbesX+IRQQzeJazt3i/xAtghblct718EmYci4=";
  };

  cargoSha256 = "sha256-6XWFhfY8QIl4S6zDyyM2YvFUoGMnKZQ3d/GT4yQWb7A=";

  nativeBuildInputs = [ pkg-config ];

  buildInputs = [ openssl ]
    ++ lib.optionals stdenv.isDarwin [ curl CoreFoundation CoreServices Security ];

  OPENSSL_NO_VENDOR = 1;

  # tries to use "/homeless-shelter" and fails
  doCheck = false;

  meta = with lib; {
    description = "A CLI tool designed for folks who are interested in using Cloudflare Workers";
    homepage = "https://github.com/cloudflare/wrangler";
    license = with licenses; [ asl20 /* or */ mit ];
    maintainers = with maintainers; [ Br1ght0ne ];
  };
}