2021-03-20 04:20:00 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, Security, CoreServices, CoreFoundation, libiconv }:
|
2020-06-18 07:06:33 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "wrangler";
|
2022-08-12 12:06:08 +00:00
|
|
|
version = "1.19.12";
|
2020-06-18 07:06:33 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cloudflare";
|
2022-09-14 18:05:37 +00:00
|
|
|
repo = "wrangler";
|
2020-06-18 07:06:33 +00:00
|
|
|
rev = "v${version}";
|
2022-08-12 12:06:08 +00:00
|
|
|
sha256 = "sha256-HnenF3X/6tvzwlbuOiQAvB76GrdRsqETG+3fp1fx334=";
|
2020-06-18 07:06:33 +00:00
|
|
|
};
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
cargoSha256 = "sha256-mJyuqVSiuBKI/x3P865W1/ei5Ya2mV5LVXzaL3peocE=";
|
2020-06-18 07:06:33 +00:00
|
|
|
|
2021-03-12 07:09:13 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-06-18 07:06:33 +00:00
|
|
|
|
2021-03-12 07:09:13 +00:00
|
|
|
buildInputs = [ openssl ]
|
2021-03-20 04:20:00 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ curl CoreFoundation CoreServices Security libiconv ];
|
2020-06-18 07:06:33 +00:00
|
|
|
|
2021-03-12 07:09:13 +00:00
|
|
|
OPENSSL_NO_VENDOR = 1;
|
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
# tries to use "/homeless-shelter" and fails
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-06-18 07:06:33 +00:00
|
|
|
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 ];
|
2020-11-19 00:13:47 +00:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
2020-06-18 07:06:33 +00:00
|
|
|
};
|
|
|
|
}
|