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 16:38:49 +01:00
rustPlatform.buildRustPackage rec {
pname = "wrangler";
2020-12-17 08:34:43 +00:00
version = "1.12.3";
2019-10-09 16:38:49 +01:00
src = fetchFromGitHub {
owner = "cloudflare";
repo = pname;
rev = "v${version}";
2020-12-17 08:34:43 +00:00
sha256 = "1h9020yf5jsbilzn94h7qyxw9qnz3vw43g8a2415wvjqq6ihzfvm";
2019-10-09 16:38:49 +01:00
};
2020-12-17 08:34:43 +00:00
cargoSha256 = "12azc41y2yx936ax9b1yylc0gy91k0m7ih6p0bkw7m928f762hpx";
2019-10-09 16:38:49 +01:00
2020-11-11 08:19:20 +00:00
nativeBuildInputs = [ perl ] ++ stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
2019-10-09 16:38:49 +01: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 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
};
}