3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/cloudflare-wrangler/default.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, darwin
2019-10-09 16:38:49 +01:00
}:
rustPlatform.buildRustPackage rec {
pname = "cloudflare-wrangler";
2020-03-05 17:34:49 +00:00
version = "1.8.1";
2019-10-09 16:38:49 +01:00
src = fetchFromGitHub {
owner = "cloudflare";
repo = "wrangler";
rev = "v" + version;
2020-03-05 17:34:49 +00:00
sha256 = "0lh06cnjddmy5h5xvbkg8f97vw2v0wr5fi7vrs3nnidiz7x4rsja";
2019-10-09 16:38:49 +01:00
};
# Delete this on next update; see #79975 for details
legacyCargoFetcher = true;
2020-03-05 17:34:49 +00:00
cargoSha256 = "0s07143vsrb2vwj4rarx5w3wcz1zh0gi8al6cdrfqyl7nhm1mshm";
2019-10-09 16:38:49 +01:00
nativeBuildInputs = [ pkg-config ];
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; {
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;
};
}