mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +00:00
38 lines
960 B
Nix
38 lines
960 B
Nix
{ rustPlatform
|
|
, fetchFromGitHub
|
|
, lib
|
|
, openssl
|
|
, pkg-config
|
|
, stdenv
|
|
, Security
|
|
, SystemConfiguration
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "sentry-cli";
|
|
version = "1.74.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "getsentry";
|
|
repo = "sentry-cli";
|
|
rev = version;
|
|
sha256 = "sha256-1A/c5HiXtT6xUTxVInv9DbbCsqpu8iCJ7I0A9wFeaQ0=";
|
|
};
|
|
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-z++t+Zt40az11z/xhobvvbbSNUBpnMzqlRzoOuYgY2U=";
|
|
|
|
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 ];
|
|
};
|
|
}
|