3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/sentry-cli/default.nix

38 lines
962 B
Nix
Raw Normal View History

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