2020-10-30 12:23:54 -07:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, darwin, perl }:
|
2019-10-09 08:38:49 -07:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2020-05-26 13:22:44 -07:00
|
|
|
pname = "wrangler";
|
2020-12-17 00:34:43 -08:00
|
|
|
version = "1.12.3";
|
2019-10-09 08:38:49 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cloudflare";
|
2020-05-26 13:22:44 -07:00
|
|
|
repo = pname;
|
2020-03-08 16:25:13 -07:00
|
|
|
rev = "v${version}";
|
2020-12-17 00:34:43 -08:00
|
|
|
sha256 = "1h9020yf5jsbilzn94h7qyxw9qnz3vw43g8a2415wvjqq6ihzfvm";
|
2019-10-09 08:38:49 -07:00
|
|
|
};
|
|
|
|
|
2020-12-17 00:34:43 -08:00
|
|
|
cargoSha256 = "12azc41y2yx936ax9b1yylc0gy91k0m7ih6p0bkw7m928f762hpx";
|
2019-10-09 08:38:49 -07:00
|
|
|
|
2020-11-11 00:19:20 -08:00
|
|
|
nativeBuildInputs = [ perl ] ++ stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
|
2019-10-09 08:38:49 -07:00
|
|
|
|
2020-05-26 13:23:32 -07: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 08:38:49 -07:00
|
|
|
|
|
|
|
# tries to use "/homeless-shelter" and fails
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-08 16:25:13 -07:00
|
|
|
description = "A CLI tool designed for folks who are interested in using Cloudflare Workers";
|
2020-03-05 09:34:49 -08:00
|
|
|
homepage = "https://github.com/cloudflare/wrangler";
|
2019-10-09 08:38:49 -07:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2020-11-17 03:02:06 -08:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
2019-10-09 08:38:49 -07:00
|
|
|
};
|
|
|
|
}
|