about summary refs log tree commit diff
path: root/pkgs/servers/monitoring
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2023-12-22 12:45:47 +0100
committerGitHub <noreply@github.com>2023-12-22 12:45:47 +0100
commitba21db1ef2133cfa1a6b90b2dac8e5905c8c02d6 (patch)
tree875fe2c4bb1cec3abce6e22abd29d2a6d5731e89 /pkgs/servers/monitoring
parentb3d89eddd9f06795aecbcbbc40a4a49b7f242244 (diff)
parent3eb45a22ca8795b9ef2e9805a5070908fd5f0098 (diff)
downloadnixlib-ba21db1ef2133cfa1a6b90b2dac8e5905c8c02d6.tar
nixlib-ba21db1ef2133cfa1a6b90b2dac8e5905c8c02d6.tar.gz
nixlib-ba21db1ef2133cfa1a6b90b2dac8e5905c8c02d6.tar.bz2
nixlib-ba21db1ef2133cfa1a6b90b2dac8e5905c8c02d6.tar.lz
nixlib-ba21db1ef2133cfa1a6b90b2dac8e5905c8c02d6.tar.xz
nixlib-ba21db1ef2133cfa1a6b90b2dac8e5905c8c02d6.tar.zst
nixlib-ba21db1ef2133cfa1a6b90b2dac8e5905c8c02d6.zip
Merge pull request #275688 from Ma27/bump-grafana
grafana: 10.2.2 -> 10.2.3
Diffstat (limited to 'pkgs/servers/monitoring')
-rw-r--r--pkgs/servers/monitoring/grafana/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/servers/monitoring/grafana/default.nix b/pkgs/servers/monitoring/grafana/default.nix
index 2cc7042068d4..9dc861c75866 100644
--- a/pkgs/servers/monitoring/grafana/default.nix
+++ b/pkgs/servers/monitoring/grafana/default.nix
@@ -2,7 +2,7 @@
 
 buildGoModule rec {
   pname = "grafana";
-  version = "10.2.2";
+  version = "10.2.3";
 
   excludedPackages = [ "alert_webhook_listener" "clean-swagger" "release_publisher" "slow_proxy" "slow_proxy_mac" "macaron" "devenv" "modowners" ];
 
@@ -10,19 +10,19 @@ buildGoModule rec {
     owner = "grafana";
     repo = "grafana";
     rev = "v${version}";
-    hash = "sha256-MlrGBa/ZQwfETr5vt7CyJxtvZC021aeWsgKtfuc8wAc=";
+    hash = "sha256-F61RtPEjQ4uFVcJLG04CD4//w8X7uJinxzYyoW/MosA=";
   };
 
   srcStatic = fetchurl {
     url = "https://dl.grafana.com/oss/release/grafana-${version}.linux-amd64.tar.gz";
-    hash = "sha256-Mt0si5TxkXGQp5vmVD37fl3WKXuuIcJNtiTcEYCroZ8=";
+    hash = "sha256-xoZgaml1SB9PEI3kTE3zRlJR5O4tog58bua2blvc8to=";
   };
 
-  vendorHash = "sha256-z2eDbnezG9TWrqLPxAXHBgdtXvaEf8ccUQUe9MnhjtQ=";
+  vendorHash = "sha256-rQOnuh6t+cUqyAAnUhGgxMaW88pawnauAGQd6w0T57Q=";
 
   nativeBuildInputs = [ wire ];
 
-  preBuild = let
+  postConfigure = let
     skipTest = lineOffset: testCase: file:
       let
         jumpAndAppend = lib.concatStringsSep ";" (lib.replicate (lineOffset - 1) "n" ++ [ "a" ]);