2020-03-08 23:25:13 +00:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, darwin }:
|
2019-10-09 16:38:49 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cloudflare-wrangler";
|
2020-05-24 19:35:29 +01:00
|
|
|
version = "1.9.1";
|
2019-10-09 16:38:49 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cloudflare";
|
|
|
|
repo = "wrangler";
|
2020-03-08 23:25:13 +00:00
|
|
|
rev = "v${version}";
|
2020-05-24 19:35:29 +01:00
|
|
|
sha256 = "09rq6lnv9993ah49jxqaqqhv5xxj51gxlqdi99wkj217cxp9gqqn";
|
2019-10-09 16:38:49 +01:00
|
|
|
};
|
|
|
|
|
2020-05-24 19:35:29 +01:00
|
|
|
cargoSha256 = "0vlb1g4pki84n2zf6w3bisa7jpv0ws8nb3lgr0bkjrirf60a9xsk";
|
2019-10-09 16:38:49 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
2020-02-12 08:17:15 +00:00
|
|
|
buildInputs = [ openssl ] ++ stdenv.lib.optionals stdenv.isDarwin [
|
|
|
|
curl
|
|
|
|
darwin.apple_sdk.frameworks.Security
|
|
|
|
darwin.apple_sdk.frameworks.CoreServices
|
|
|
|
darwin.apple_sdk.frameworks.CoreFoundation
|
|
|
|
];
|
2019-10-09 16:38:49 +01:00
|
|
|
|
|
|
|
# tries to use "/homeless-shelter" and fails
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.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 16:38:49 +01:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|