nixpkgs/pkgs/development/tools/wrangler/default.nix

33 lines
989 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 15:38:49 +00:00
rustPlatform.buildRustPackage rec {
pname = "wrangler";
2021-07-25 12:42:45 +00:00
version = "1.18.0";
2019-10-09 15:38:49 +00:00
src = fetchFromGitHub {
owner = "cloudflare";
repo = pname;
rev = "v${version}";
2021-07-25 12:42:45 +00:00
sha256 = "sha256-Ue9HCAYqv8DXiEZEuGRFPywNegakxBpb66RELP1Y+cg=";
2019-10-09 15:38:49 +00:00
};
2021-07-25 12:42:45 +00:00
cargoSha256 = "sha256-HCsJG//RnlcmRSrBdf7iZTUOiQabMV2rICPLKvuE4AI=";
2019-10-09 15:38:49 +00:00
nativeBuildInputs = [ pkg-config ];
2019-10-09 15:38:49 +00:00
buildInputs = [ openssl ]
2021-03-25 06:37:34 +00:00
++ lib.optionals stdenv.isDarwin [ curl CoreFoundation CoreServices Security libiconv ];
2019-10-09 15:38:49 +00:00
OPENSSL_NO_VENDOR = 1;
2019-10-09 15:38:49 +00: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 15:38:49 +00:00
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ Br1ght0ne ];
2019-10-09 15:38:49 +00:00
};
}