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

36 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, darwin }:
2019-10-09 16:38:49 +01:00
rustPlatform.buildRustPackage rec {
pname = "wrangler";
2020-06-30 20:00:55 +01:00
version = "1.10.3";
2019-10-09 16:38:49 +01:00
src = fetchFromGitHub {
owner = "cloudflare";
repo = pname;
rev = "v${version}";
2020-06-30 20:00:55 +01:00
sha256 = "0703zlrmv0if575rj1mrgfg1a5qbf98sqjhhj09hab69i96wbrk9";
2019-10-09 16:38:49 +01:00
};
2020-06-30 20:00:55 +01:00
cargoSha256 = "0znzyqzvbqcl4mmxpsvaf592xrs968x57czj45jibmafq033dbfa";
2019-10-09 16:38:49 +01:00
nativeBuildInputs = 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 stdenv.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 ];
2020-05-26 21:24:06 +01:00
maintainers = with maintainers; [ filalex77 ];
2019-10-09 16:38:49 +01:00
};
}