grafanaPlugins.redis-datasource: init at 2.1.1

This commit is contained in:
Azat Bahawi 2023-03-23 21:35:05 +03:00
parent 4dc8a5c2dc
commit 7c48c824bd
No known key found for this signature in database
GPG Key ID: C8C6BDDB3847F72B
2 changed files with 14 additions and 0 deletions

View File

@ -10,4 +10,5 @@
grafana-piechart-panel = callPackage ./grafana-piechart-panel { };
grafana-polystat-panel = callPackage ./grafana-polystat-panel { };
grafana-worldmap-panel = callPackage ./grafana-worldmap-panel { };
redis-datasource = callPackage ./redis-datasource { };
}

View File

@ -0,0 +1,13 @@
{ grafanaPlugin, lib }:
grafanaPlugin rec {
pname = "redis-datasource";
version = "2.1.1";
zipHash = "sha256-Qhdh2UYOq/El08jTheKRa3f971QKeVmMWiA6rnXNUi4=";
meta = with lib; {
description = "Redis Data Source for Grafana";
license = licenses.asl20;
maintainers = with maintainers; [ azahi ];
platforms = platforms.unix;
};
}