grafanaPlugins.grafana-piechart-panel: init at 1.6.1

This commit is contained in:
Luke Granger-Brown 2020-12-30 17:32:46 +00:00
parent 007ae56973
commit ee4c056c5f
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ grafanaPlugin, lib }:
grafanaPlugin rec {
pname = "grafana-piechart-panel";
version = "1.6.1";
zipHash = "sha256-64K/efoBKuBFp8Jw79hTdMyTurTZsL0qfgPDcUWz2jg=";
meta = with lib; {
description = "Pie chart panel for Grafana";
license = licenses.asl20;
maintainers = with maintainers; [ lukegb ];
platforms = platforms.unix;
};
}

View file

@ -5,4 +5,5 @@
grafanaPlugin = callPackage ./grafana-plugin.nix { };
grafana-clock-panel = callPackage ./grafana-clock-panel { };
grafana-piechart-panel = callPackage ./grafana-piechart-panel { };
}