nixpkgs/pkgs/development/tools/wrangler/default.nix

33 lines
970 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, Security, CoreServices, CoreFoundation }:
2019-10-09 15:38:49 +00:00
rustPlatform.buildRustPackage rec {
pname = "wrangler";
2021-03-13 16:52:27 +00:00
version = "1.15.0";
2019-10-09 15:38:49 +00:00
src = fetchFromGitHub {
owner = "cloudflare";
repo = pname;
rev = "v${version}";
2021-03-13 16:52:27 +00:00
sha256 = "sha256-/5iIdEUbesX+IRQQzeJazt3i/xAtghblct718EmYci4=";
2019-10-09 15:38:49 +00:00
};
2021-03-13 16:52:27 +00:00
cargoSha256 = "sha256-6XWFhfY8QIl4S6zDyyM2YvFUoGMnKZQ3d/GT4yQWb7A=";
2019-10-09 15:38:49 +00:00
nativeBuildInputs = [ pkg-config ];
2019-10-09 15:38:49 +00:00
buildInputs = [ openssl ]
2021-03-04 11:54:24 +00:00
++ lib.optionals stdenv.isDarwin [ curl CoreFoundation CoreServices Security ];
2019-10-09 15:38:49 +00:00
OPENSSL_NO_VENDOR = 1;
2019-10-09 15:38:49 +00:00
# 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";
2020-03-05 17:34:49 +00:00
homepage = "https://github.com/cloudflare/wrangler";
2019-10-09 15:38:49 +00:00
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ Br1ght0ne ];
2019-10-09 15:38:49 +00:00
};
}