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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
990 B
Nix
Raw Normal View History

2021-03-25 06:37:34 +00:00
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, Security, CoreServices, CoreFoundation, libiconv }:
2019-10-09 16:38:49 +01:00
rustPlatform.buildRustPackage rec {
pname = "wrangler";
2022-03-22 21:22:04 +00:00
version = "1.19.10";
2019-10-09 16:38:49 +01:00
src = fetchFromGitHub {
owner = "cloudflare";
repo = pname;
rev = "v${version}";
2022-03-22 21:22:04 +00:00
sha256 = "sha256-RKOAs7MRHcGx6BNBml7WQ81bNvdB9ipd0R1ErLTwjTQ=";
2019-10-09 16:38:49 +01:00
};
2022-03-22 21:22:04 +00:00
cargoSha256 = "sha256-9GvKDLuDIW5q1R5g20rtSScv2c0sLSo+hI9LSA4W3M8=";
2019-10-09 16:38:49 +01:00
nativeBuildInputs = [ pkg-config ];
2019-10-09 16:38:49 +01:00
buildInputs = [ openssl ]
2021-03-25 06:37:34 +00:00
++ lib.optionals stdenv.isDarwin [ curl CoreFoundation CoreServices Security libiconv ];
2019-10-09 16:38:49 +01:00
OPENSSL_NO_VENDOR = 1;
2019-10-09 16:38:49 +01:00
# tries to use "/homeless-shelter" and fails
doCheck = false;
meta = with 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; [ Br1ght0ne ];
2019-10-09 16:38:49 +01:00
};
}