grafanaPlugins.volkovlabs-variable-panel: init at 3.5.0

This commit is contained in:
Simonas Kazlauskas
2024-10-14 22:30:03 +03:00
parent 42d65e7291
commit 60a29a6f9e
2 changed files with 14 additions and 0 deletions
@@ -31,4 +31,5 @@
volkovlabs-echarts-panel = callPackage ./volkovlabs-echarts-panel { };
volkovlabs-form-panel = callPackage ./volkovlabs-form-panel { };
volkovlabs-rss-datasource = callPackage ./volkovlabs-rss-datasource { };
volkovlabs-variable-panel = callPackage ./volkovlabs-variable-panel { };
}
@@ -0,0 +1,13 @@
{ grafanaPlugin, lib }:
grafanaPlugin rec {
pname = "volkovlabs-variable-panel";
version = "3.5.0";
zipHash = "sha256-SqMTCdB+8OUo94zJ3eS5NoCeyjc7sdMCR0CTvVe/L1g=";
meta = with lib; {
description = "The Variable panel allows you to have dashboard filters in a separate panel which you can place anywhere on the dashboard.";
license = licenses.asl20;
maintainers = with maintainers; [ nagisa ];
platforms = platforms.unix;
};
}