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

36 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, darwin, perl }:
2019-10-09 15:38:49 +00:00
rustPlatform.buildRustPackage rec {
pname = "wrangler";
2021-01-14 20:36:32 +00:00
version = "1.13.0";
2019-10-09 15:38:49 +00:00
src = fetchFromGitHub {
owner = "cloudflare";
repo = pname;
rev = "v${version}";
2021-01-14 20:36:32 +00:00
sha256 = "0xhldarzb71x4k7ydk4yd6g0qv6y2l0mn2lc43hvl9jm29pnz95q";
2019-10-09 15:38:49 +00:00
};
2021-01-14 20:36:32 +00:00
cargoSha256 = "0w845virvw7mvibc76ar2hbffhfzj2v8v1xkrsssrgzyaryb48jk";
2019-10-09 15:38:49 +00:00
nativeBuildInputs = [ perl ] ++ lib.optionals stdenv.isLinux [ pkg-config ];
2019-10-09 15:38:49 +00:00
buildInputs = lib.optionals stdenv.isLinux [ openssl ]
++ lib.optionals stdenv.isDarwin [
curl
darwin.apple_sdk.frameworks.Security
darwin.apple_sdk.frameworks.CoreServices
darwin.apple_sdk.frameworks.CoreFoundation
];
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
};
}