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";
|
2021-12-06 16:07:01 +00:00
|
|
|
version = "1.19.5";
|
2020-06-18 07:06:33 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cloudflare";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-12-06 16:07:01 +00:00
|
|
|
sha256 = "sha256-r8Ni6r1NpHJ0UVEV+aG1RkGn0GQijTiWWZyQWJRXPi8=";
|
2020-06-18 07:06:33 +00:00
|
|
|
};
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
cargoSha256 = "sha256-GWBY4diq6VFpBcb1ROmJcXX/zJGwanja8eoaxxm+ij8=";
|
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
|
|
|
};
|
|
|
|
}
|