02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
37 lines
959 B
Nix
37 lines
959 B
Nix
{ rustPlatform
|
|
, fetchFromGitHub
|
|
, lib
|
|
, openssl
|
|
, pkg-config
|
|
, stdenv
|
|
, Security
|
|
, SystemConfiguration
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "sentry-cli";
|
|
version = "2.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "getsentry";
|
|
repo = "sentry-cli";
|
|
rev = version;
|
|
sha256 = "sha256-VNYZMeKX3QJNxwWK+gn8LIm/W6l4NAjJtCG6nlO9Clc=";
|
|
};
|
|
doCheck = false;
|
|
|
|
# Needed to get openssl-sys to use pkgconfig.
|
|
OPENSSL_NO_VENDOR = 1;
|
|
|
|
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
cargoSha256 = "sha256-Nn7GolRtBs2eVBPT75hqXiTNrqNZfcSPdHwXWkb48NA=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://docs.sentry.io/cli/";
|
|
license = licenses.bsd3;
|
|
description = "A command line utility to work with Sentry";
|
|
changelog = "https://github.com/getsentry/sentry-cli/raw/${version}/CHANGELOG.md";
|
|
maintainers = with maintainers; [ rizary ];
|
|
};
|
|
}
|