Unverified Commit 05d9eec2 authored by Maximilian Bosch's avatar Maximilian Bosch Committed by GitHub
Browse files

Merge: grafanaPlugins: fix update script/add some interesting data source plugins (#288642)

parents bb72b22c 77eb5806
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
{ grafanaPlugin, lib }:

grafanaPlugin rec {
  pname = "bsull-console-datasource";
  version = "1.0.1";
  zipHash = "sha256-V6D/VIdwwQvG21nVMXD/xF86Uy8WRecL2RjyDTZr1wQ=";
  meta = with lib; {
    description = "This is a streaming Grafana data source which can connect to the Tokio console subscriber.";
    license = licenses.asl20;
    maintainers = with maintainers; [ nagisa ];
    platforms = platforms.unix;
  };
}
+13 −0
Original line number Diff line number Diff line
{ grafanaPlugin, lib }:

grafanaPlugin rec {
  pname = "fetzerch-sunandmoon-datasource";
  version = "0.3.3";
  zipHash = "sha256-IJe1OiPt9MxqqPymuH0K27jToSb92M0P4XGZXvk0paE=";
  meta = with lib; {
    description = "SunAndMoon is a Datasource Plugin for Grafana that calculates the position of Sun and Moon as well as the Moon illumination using SunCalc.";
    license = licenses.mit;
    maintainers = with maintainers; [ nagisa ];
    platforms = platforms.unix;
  };
}
+13 −0
Original line number Diff line number Diff line
{ grafanaPlugin, lib }:

grafanaPlugin rec {
  pname = "frser-sqlite-datasource";
  version = "3.5.0";
  zipHash = "sha256-BwAurFpMyyR318HMzVXCnOEQWM8W2vPPisXhhklFLBY=";
  meta = with lib; {
    description = "This is a Grafana backend plugin to allow using an SQLite database as a data source. The SQLite database needs to be accessible to the filesystem of the device where Grafana itself is running.";
    license = licenses.asl20;
    maintainers = with maintainers; [ nagisa ];
    platforms = platforms.unix;
  };
}
+5 −5
Original line number Diff line number Diff line
@@ -2,12 +2,12 @@

grafanaPlugin rec {
  pname = "grafana-clickhouse-datasource";
  version = "3.3.0";
  version = "4.4.0";
  zipHash = {
    x86_64-linux = "sha256-FkOX/2vPmLtxe/oOISldlVhayy7AwfFxLeiwJ5TNgYY=";
    aarch64-linux = "sha256-4rCj+NaKPZbuVohlKmSf1M6n5ng9HZMrwzBCgLPdiok=";
    x86_64-darwin = "sha256-bpey6EwwAqXgxjvjJ6ou4rinidHCpUr+Z89YpAZK7z8=";
    aarch64-darwin = "sha256-u/U2lu4szf9JFt/zfhGmWKH2OUqpJDNaSI69EDdi1+w=";
    x86_64-linux = "sha256-rh+oTJrW7WxLHG7jSkT1Pog+/tqhE+j/0jdbgaHu1a4=";
    aarch64-linux = "sha256-uV+WKh3/jBgOwX2lrwC3Q7TGr3/BH83QZhwmtL4G3qo=";
    x86_64-darwin = "sha256-Y6Xp4HCYF+Nkw8CNrfEMOtpNgKunMI/4oVqD8Wq5VEI=";
    aarch64-darwin = "sha256-x/Z5BA9N5sZurQ5K1NQCYXQPZ/yF1p/372GPIeVU0ps=";
  };
  meta = with lib; {
    description = "Connects Grafana to ClickHouse";
+2 −2
Original line number Diff line number Diff line
@@ -2,8 +2,8 @@

grafanaPlugin rec {
  pname = "grafana-clock-panel";
  version = "2.1.3";
  zipHash = "sha256-ZedeV/SQsBu55jAxFyyXQefir4hEl1/TQDmaTJN9bag=";
  version = "2.1.8";
  zipHash = "sha256-QLvq2CSlJuEaYAazn8MoY3XCiXeRILj4dTp/aqrHL/k=";
  meta = with lib; {
    description = "Clock panel for Grafana";
    license = licenses.mit;
Loading