41 lines
911 B
Nix
41 lines
911 B
Nix
{ rustPlatform
|
|
, fetchFromGitHub
|
|
, lib
|
|
, openssl
|
|
, file
|
|
, rpm
|
|
, pkg-config
|
|
, stdenv
|
|
, curl
|
|
, Security
|
|
, runCommand
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "sentry-cli";
|
|
version = "1.66.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "getsentry";
|
|
repo = "sentry-cli";
|
|
rev = version;
|
|
sha256 = "sha256-ivQBn5GGb64Jq0gpywAg20309QQMpasg/Bu5sHKj02Y=";
|
|
};
|
|
doCheck = false;
|
|
|
|
# Needed to get openssl-sys to use pkgconfig.
|
|
OPENSSL_NO_VENDOR = 1;
|
|
|
|
buildInputs = [ openssl file rpm ] ++ lib.optionals stdenv.isDarwin [ Security curl ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
cargoSha256 = "sha256-xS88KZWYkg3v8TJZUVVgQhR++CrZGD0DQnLPktSUJQk=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://docs.sentry.io/cli/";
|
|
license = licenses.bsd3;
|
|
description = "A command line utility to work with Sentry.";
|
|
maintainers = with maintainers; [ rizary ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|