nixpkgs-suyu/pkgs/development/tools/sentry-cli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
959 B
Nix
Raw Normal View History

2021-06-14 17:37:13 +02:00
{ rustPlatform
, fetchFromGitHub
, lib
, openssl
, pkg-config
, stdenv
, Security
2021-08-28 02:04:20 +02:00
, SystemConfiguration
2021-06-14 17:37:13 +02:00
}:
rustPlatform.buildRustPackage rec {
pname = "sentry-cli";
2022-08-17 23:19:30 +02:00
version = "2.5.2";
2021-06-14 17:37:13 +02:00
src = fetchFromGitHub {
owner = "getsentry";
repo = "sentry-cli";
rev = version;
2022-08-17 23:19:30 +02:00
sha256 = "sha256-l632b+Cxs9jiahbeZYzjXDiw+LE2MUgx4negEh9jMAc=";
2021-06-14 17:37:13 +02:00
};
doCheck = false;
# Needed to get openssl-sys to use pkgconfig.
OPENSSL_NO_VENDOR = 1;
2021-08-28 02:04:20 +02:00
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
2021-06-14 17:37:13 +02:00
nativeBuildInputs = [ pkg-config ];
2022-08-17 23:19:30 +02:00
cargoSha256 = "sha256-uVzUCwYJo3CRykGHSfxigi2N9YSsxh0q8xMXuOe2Zsk=";
2021-06-14 17:37:13 +02:00
meta = with lib; {
homepage = "https://docs.sentry.io/cli/";
license = licenses.bsd3;
2021-08-28 02:04:20 +02:00
description = "A command line utility to work with Sentry";
changelog = "https://github.com/getsentry/sentry-cli/raw/${version}/CHANGELOG.md";
2021-06-14 17:37:13 +02:00
maintainers = with maintainers; [ rizary ];
};
}