14 lines
361 B
Nix
14 lines
361 B
Nix
|
|
{ grafanaPlugin, lib }:
|
||
|
|
|
||
|
|
grafanaPlugin {
|
||
|
|
pname = "doitintl-bigquery-datasource";
|
||
|
|
version = "2.0.3";
|
||
|
|
zipHash = "sha256-QxUNRsO1ony+6tVdpwx3P/63XNIdAVIren6hUwChf9E=";
|
||
|
|
meta = with lib; {
|
||
|
|
description = "BigQuery DataSource for Grafana";
|
||
|
|
license = licenses.mit;
|
||
|
|
maintainers = with maintainers; [ jwygoda ];
|
||
|
|
platforms = platforms.unix;
|
||
|
|
};
|
||
|
|
}
|