about summary refs log tree commit diff
path: root/pkgs/development/tools/sentry-cli
diff options
context:
space:
mode:
authorSebastian Zivota <loewenheim@mailbox.org>2023-09-08 10:57:11 +0200
committerSebastian Zivota <loewenheim@mailbox.org>2023-09-08 10:57:11 +0200
commite381dfc8156f4201ba9f7695704562cea033788a (patch)
treecfdad00249e6a75076b1835c5b13b009444a5fcd /pkgs/development/tools/sentry-cli
parent157ec795d8ef07aa1b2730f847544314015ae839 (diff)
sentry-cli: 2.20.5 -> 2.20.7
Diffstat (limited to 'pkgs/development/tools/sentry-cli')
-rw-r--r--pkgs/development/tools/sentry-cli/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/sentry-cli/default.nix b/pkgs/development/tools/sentry-cli/default.nix
index 702e8c8039779..5f7fa29befabc 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.20.5";
+  version = "2.20.7";
 
   src = fetchFromGitHub {
     owner = "getsentry";
     repo = "sentry-cli";
     rev = version;
-    sha256 = "sha256-gV1IL2IKbmUeOJkMfJ3Hd8xoylVi0i7ADdxaISLF+wM=";
+    sha256 = "sha256-H1WRjNMYcWqc9Y8H7agzA7uMhvlA4DXpJOUpbUG+xxU=";
   };
   doCheck = false;
 
@@ -25,13 +25,13 @@ rustPlatform.buildRustPackage rec {
   buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
   nativeBuildInputs = [ pkg-config ];
 
-  cargoHash = "sha256-9L+wfYO5BOkpB3VqUSOJEwq671SVGlWcbXd80m/UoYI=";
+  cargoHash = "sha256-WLnvyQQ51dIsD5g3FjHJhA+EqB1UEHghwxI/TVYwNdo=";
 
   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 ];
+    maintainers = with maintainers; [ rizary loewenheim ];
   };
 }