13 lines
351 B
Nix
13 lines
351 B
Nix
{ grafanaPlugin, lib }:
|
|
|
|
grafanaPlugin rec {
|
|
pname = "redis-app";
|
|
version = "2.2.1";
|
|
zipHash = "sha256-1ZzJaGhlM6CaTecj69aqJ9fqN7wYSsiDCMTRVkZJUb0=";
|
|
meta = with lib; {
|
|
description = "Redis Application plugin for Grafana";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ azahi ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|