3
0
Fork 0
forked from mirrors/nixpkgs

grafanaPlugins.grafana-clock-panel: init at 1.1.1

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

View file

@ -0,0 +1,13 @@
{ grafanaPlugin, lib }:
grafanaPlugin rec {
pname = "grafana-clock-panel";
version = "1.1.1";
zipHash = "sha256-SvZyg7r+XG6i7jqYwxpPn6ZzJc7qmtfPtyphYppURDk=";
meta = with lib; {
description = "Clock panel for Grafana";
license = licenses.asl20;
maintainers = with maintainers; [ lukegb ];
platforms = platforms.unix;
};
}

View file

@ -3,4 +3,6 @@
inherit callPackage;
grafanaPlugin = callPackage ./grafana-plugin.nix { };
grafana-clock-panel = callPackage ./grafana-clock-panel { };
}