about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-02-04 18:32:17 -0500
committerGitHub <noreply@github.com>2023-02-04 18:32:17 -0500
commit19ad2a2b84a99b8025ace91ba7b80d12d8ae71db (patch)
tree1f451fa194bc0bc384462641d5f992e393eaf20e /pkgs
parent8dae5d5f8763c0c898e67f7edfdb94c34246d3eb (diff)
parent5f962d5bd1f0cb0b6f1568b948d85e234563f3cd (diff)
Merge pull request #214603 from r-ryantm/auto-update/sentry-cli
sentry-cli: 2.11.0 -> 2.12.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/sentry-cli/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/sentry-cli/default.nix b/pkgs/development/tools/sentry-cli/default.nix
index 0bab699b3cf2c..f4fac6644646d 100644
--- a/pkgs/development/tools/sentry-cli/default.nix
+++ b/pkgs/development/tools/sentry-cli/default.nix
@@ -9,13 +9,13 @@
 }:
 rustPlatform.buildRustPackage rec {
   pname = "sentry-cli";
-  version = "2.11.0";
+  version = "2.12.0";
 
   src = fetchFromGitHub {
     owner = "getsentry";
     repo = "sentry-cli";
     rev = version;
-    sha256 = "sha256-08H/aNYUsTORCwTm9pwWiLQjAcWSiZrjg5q6OkkllWg=";
+    sha256 = "sha256-HkaCaOVbEEy8H6gN9hoiDEEQM+XWyUJ4gYPxTlbBGgA=";
   };
   doCheck = false;
 
@@ -25,7 +25,7 @@ rustPlatform.buildRustPackage rec {
   buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
   nativeBuildInputs = [ pkg-config ];
 
-  cargoSha256 = "sha256-GEZZXRPfpIhr73SpyP9iLSjRe67wllSpp5oh6N0S9ok=";
+  cargoHash = "sha256-4RUeUwixb5omcHT4jJHJKF2lYZE/4014DnrR2j7sen0=";
 
   meta = with lib; {
     homepage = "https://docs.sentry.io/cli/";