2021-03-04 11:54:24 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, Security, CoreServices, CoreFoundation, perl }:
|
2019-10-09 15:38:49 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2020-05-26 20:22:44 +00:00
|
|
|
pname = "wrangler";
|
2021-01-14 20:36:32 +00:00
|
|
|
version = "1.13.0";
|
2019-10-09 15:38:49 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cloudflare";
|
2020-05-26 20:22:44 +00:00
|
|
|
repo = pname;
|
2020-03-08 23:25:13 +00:00
|
|
|
rev = "v${version}";
|
2021-01-14 20:36:32 +00:00
|
|
|
sha256 = "0xhldarzb71x4k7ydk4yd6g0qv6y2l0mn2lc43hvl9jm29pnz95q";
|
2019-10-09 15:38:49 +00:00
|
|
|
};
|
|
|
|
|
2021-01-14 20:36:32 +00:00
|
|
|
cargoSha256 = "0w845virvw7mvibc76ar2hbffhfzj2v8v1xkrsssrgzyaryb48jk";
|
2019-10-09 15:38:49 +00:00
|
|
|
|
2021-03-04 11:54:24 +00:00
|
|
|
nativeBuildInputs = [ perl ]
|
|
|
|
++ lib.optionals stdenv.isLinux [ pkg-config ];
|
2019-10-09 15:38:49 +00:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isLinux [ 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
|
|
|
|
|
|
|
# tries to use "/homeless-shelter" and fails
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-03-08 23:25:13 +00:00
|
|
|
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 ];
|
2020-11-17 11:02:06 +00:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
2019-10-09 15:38:49 +00:00
|
|
|
};
|
|
|
|
}
|