2021-03-25 09:37:34 +03:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, Security, CoreServices, CoreFoundation, libiconv }:
|
2019-10-09 18:38:49 +03:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2020-05-26 23:22:44 +03:00
|
|
|
pname = "wrangler";
|
2021-04-27 04:31:01 +03:00
|
|
|
version = "1.16.1";
|
2019-10-09 18:38:49 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cloudflare";
|
2020-05-26 23:22:44 +03:00
|
|
|
repo = pname;
|
2020-03-09 02:25:13 +03:00
|
|
|
rev = "v${version}";
|
2021-04-27 04:31:01 +03:00
|
|
|
sha256 = "sha256-chKmn38yB05NqDvtYWo4EwEIiD6kjy/1OMaMFM4qAA8=";
|
2019-10-09 18:38:49 +03:00
|
|
|
};
|
|
|
|
|
2021-04-27 04:31:01 +03:00
|
|
|
cargoSha256 = "sha256-pG3ZsRPa/7QRkUik6a987SlGrl3B0thnN3h62JyzdJo=";
|
2019-10-09 18:38:49 +03:00
|
|
|
|
2021-03-04 12:40:58 +03:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-10-09 18:38:49 +03:00
|
|
|
|
2021-03-04 12:40:58 +03:00
|
|
|
buildInputs = [ openssl ]
|
2021-03-25 09:37:34 +03:00
|
|
|
++ lib.optionals stdenv.isDarwin [ curl CoreFoundation CoreServices Security libiconv ];
|
2019-10-09 18:38:49 +03:00
|
|
|
|
2021-03-04 12:40:58 +03:00
|
|
|
OPENSSL_NO_VENDOR = 1;
|
|
|
|
|
2019-10-09 18:38:49 +03:00
|
|
|
# tries to use "/homeless-shelter" and fails
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2020-03-09 02:25:13 +03:00
|
|
|
description = "A CLI tool designed for folks who are interested in using Cloudflare Workers";
|
2020-03-05 20:34:49 +03:00
|
|
|
homepage = "https://github.com/cloudflare/wrangler";
|
2019-10-09 18:38:49 +03:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2020-11-17 14:02:06 +03:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
2019-10-09 18:38:49 +03:00
|
|
|
};
|
|
|
|
}
|