git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
13 lines
357 B
Nix
13 lines
357 B
Nix
{ 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;
|
|
};
|
|
}
|