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

36 lines
1.1 KiB
Nix
Raw Normal View History

2020-10-30 20:23:54 +01:00
{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, darwin, perl }:
2019-10-09 17:38:49 +02:00
rustPlatform.buildRustPackage rec {
pname = "wrangler";
2020-10-30 20:23:54 +01:00
version = "1.12.2";
2019-10-09 17:38:49 +02:00
src = fetchFromGitHub {
owner = "cloudflare";
repo = pname;
rev = "v${version}";
2020-10-30 20:23:54 +01:00
sha256 = "1w0j6if1fnih1036hlb9a3c6wgjw4p057llhjf0f3d568ah1244a";
2019-10-09 17:38:49 +02:00
};
2020-10-30 20:23:54 +01:00
cargoSha256 = "0d9wvdjjakznz8dnqx4gqxh0xkxrh4229460hg6dr9qn492p7nfx";
2019-10-09 17:38:49 +02:00
2020-11-11 09:19:20 +01:00
nativeBuildInputs = [ perl ] ++ stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
2019-10-09 17:38:49 +02: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 17:38:49 +02: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 18:34:49 +01:00
homepage = "https://github.com/cloudflare/wrangler";
2019-10-09 17:38:49 +02:00
license = with licenses; [ asl20 /* or */ mit ];
2020-05-26 22:24:06 +02:00
maintainers = with maintainers; [ filalex77 ];
2019-10-09 17:38:49 +02:00
};
}