From 7cdb5002b174d9b0da52aa51a78495fee09f5bd8 Mon Sep 17 00:00:00 2001 From: Arian van Putten Date: Tue, 2 Sep 2025 15:07:02 +0200 Subject: [PATCH] grafanaPlugins.grafana-sentry-datasource: fix zipHash There is a single ZIP containing all of the architectures and without using the single ZIP this seems to be incompatible with update-grafana-plugin.sh https://github.com/NixOS/nixpkgs/pull/288642/files#r2316035075 --- .../grafana/plugins/grafana-sentry-datasource/default.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-sentry-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-sentry-datasource/default.nix index 309413cb645f..82f2062153be 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-sentry-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-sentry-datasource/default.nix @@ -3,12 +3,7 @@ grafanaPlugin { pname = "grafana-sentry-datasource"; version = "2.2.1"; - zipHash = { - x86_64-linux = "sha256-6pjBUqUHXLLgFzfal/OKsMBVlVXxuRglOj3XRnnduRY="; - aarch64-linux = "sha256-0kjxBnv34lRB5qeVOyik7qvlEsz7CYur9EyIDTe+AKM="; - x86_64-darwin = "sha256-yHgF+XmJXnJjfPwabs1dsrnWvssTmYpeZUXUl+gQxfM="; - aarch64-darwin = "sha256-ysLXSKG7q/u70NynYqKKRlYIl5rkYy0AMoza3sQSPNM="; - }; + zipHash = "sha256-VJ1RpVWT3d+BrZ9zUoAaNshrE3zBgEkimqUl+innBhg="; meta = { description = "Integrate Sentry data into Grafana"; license = lib.licenses.asl20;