2021-06-28 23:13:55 +00:00
|
|
|
{ rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, lib
|
|
|
|
, openssl
|
|
|
|
, pkg-config
|
|
|
|
, stdenv
|
|
|
|
, Security
|
2021-09-18 10:52:07 +00:00
|
|
|
, SystemConfiguration
|
2021-06-28 23:13:55 +00:00
|
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "sentry-cli";
|
2023-07-15 17:15:38 +00:00
|
|
|
version = "2.19.4";
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "getsentry";
|
|
|
|
repo = "sentry-cli";
|
|
|
|
rev = version;
|
2023-07-15 17:15:38 +00:00
|
|
|
sha256 = "sha256-C86s/fQlQc49TP9CSzA8lPKBd2YKnuJNL//GPvxcVBU=";
|
2021-06-28 23:13:55 +00:00
|
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
# Needed to get openssl-sys to use pkgconfig.
|
|
|
|
OPENSSL_NO_VENDOR = 1;
|
|
|
|
|
2021-09-18 10:52:07 +00:00
|
|
|
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
|
2021-06-28 23:13:55 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
cargoHash = "sha256-Ks0IM+iqB9b44mmg6QHTZssQd+9Giu/Be+DUKy5HImg=";
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://docs.sentry.io/cli/";
|
|
|
|
license = licenses.bsd3;
|
2021-09-18 10:52:07 +00:00
|
|
|
description = "A command line utility to work with Sentry";
|
|
|
|
changelog = "https://github.com/getsentry/sentry-cli/raw/${version}/CHANGELOG.md";
|
2021-06-28 23:13:55 +00:00
|
|
|
maintainers = with maintainers; [ rizary ];
|
|
|
|
};
|
|
|
|
}
|