Merge pull request #273051 from r-ryantm/auto-update/sentry-cli

sentry-cli: 2.21.2 -> 2.23.1
This commit is contained in:
Weijia Wang 2024-01-03 17:15:44 +01:00 committed by GitHub
commit d4d4e7c10d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 5 deletions

View File

@ -4,28 +4,29 @@
, openssl , openssl
, pkg-config , pkg-config
, stdenv , stdenv
, CoreServices
, Security , Security
, SystemConfiguration , SystemConfiguration
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "sentry-cli"; pname = "sentry-cli";
version = "2.21.2"; version = "2.23.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "getsentry"; owner = "getsentry";
repo = "sentry-cli"; repo = "sentry-cli";
rev = version; rev = version;
sha256 = "sha256-2CNV1y2/D2KrQylWqd5DDQYOAhR7pGeBFva1wysGZRw="; sha256 = "sha256-xm3VC9f0V0UzDHUTKJwUJPi+JjS2wlEREQea3kkxNOc=";
}; };
doCheck = false; doCheck = false;
# Needed to get openssl-sys to use pkgconfig. # Needed to get openssl-sys to use pkgconfig.
OPENSSL_NO_VENDOR = 1; OPENSSL_NO_VENDOR = 1;
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ CoreServices Security SystemConfiguration ];
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
cargoHash = "sha256-jZUL2/iLOITIfonXzJS/K6wRSPPb2aY9ASbq1KTf+kM="; cargoHash = "sha256-exzQOJjpRtRDyL5+cbiBfhXrJX99dPdOA2wAhrUNZvs=";
meta = with lib; { meta = with lib; {
homepage = "https://docs.sentry.io/cli/"; homepage = "https://docs.sentry.io/cli/";

View File

@ -14510,7 +14510,7 @@ with pkgs;
}; };
sentry-cli = callPackage ../development/tools/sentry-cli { sentry-cli = callPackage ../development/tools/sentry-cli {
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; inherit (darwin.apple_sdk.frameworks) CoreServices Security SystemConfiguration;
}; };
sentry-native = callPackage ../development/libraries/sentry-native { }; sentry-native = callPackage ../development/libraries/sentry-native { };