about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/monitoring/grafana/plugins/redis-explorer-app/default.nix
blob: e58da0bebd83084d9f862c364da53b1a8715d626 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ grafanaPlugin, lib }:

grafanaPlugin rec {
  pname = "redis-explorer-app";
  version = "2.1.1";
  zipHash = "sha256-t5L9XURNcswDbZWSmehs/JYU7NoEwhX1If7ghbi509g=";
  meta = with lib; {
    description = "Redis Explorer plugin for Grafana";
    license = licenses.asl20;
    maintainers = with maintainers; [ azahi ];
    platforms = platforms.unix;
  };
}