2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, darwin, perl }:
|
2019-10-09 16:38:49 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2020-05-26 21:22:44 +01:00
|
|
|
pname = "wrangler";
|
2020-12-17 08:34:43 +00:00
|
|
|
version = "1.12.3";
|
2019-10-09 16:38:49 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cloudflare";
|
2020-05-26 21:22:44 +01:00
|
|
|
repo = pname;
|
2020-03-08 23:25:13 +00:00
|
|
|
rev = "v${version}";
|
2020-12-17 08:34:43 +00:00
|
|
|
sha256 = "1h9020yf5jsbilzn94h7qyxw9qnz3vw43g8a2415wvjqq6ihzfvm";
|
2019-10-09 16:38:49 +01:00
|
|
|
};
|
|
|
|
|
2020-12-17 08:34:43 +00:00
|
|
|
cargoSha256 = "12azc41y2yx936ax9b1yylc0gy91k0m7ih6p0bkw7m928f762hpx";
|
2019-10-09 16:38:49 +01:00
|
|
|
|
2020-11-11 08:19:20 +00:00
|
|
|
nativeBuildInputs = [ perl ] ++ stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
|
2019-10-09 16:38:49 +01:00
|
|
|
|
2020-05-26 21:23:32 +01:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isLinux [ 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;
|
|
|
|
|
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 16:38:49 +01:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2020-11-17 11:02:06 +00:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
2019-10-09 16:38:49 +01:00
|
|
|
};
|
|
|
|
}
|