grafanaPlugins.volkovlabs-rss-datasource: init at 4.2.0

This commit is contained in:
Simonas Kazlauskas 2024-10-04 21:54:08 +03:00
parent e0a09aaac5
commit 42d65e7291
2 changed files with 14 additions and 0 deletions

View File

@ -30,4 +30,5 @@
ventura-psychrometric-panel = callPackage ./ventura-psychrometric-panel { };
volkovlabs-echarts-panel = callPackage ./volkovlabs-echarts-panel { };
volkovlabs-form-panel = callPackage ./volkovlabs-form-panel { };
volkovlabs-rss-datasource = callPackage ./volkovlabs-rss-datasource { };
}

View File

@ -0,0 +1,13 @@
{ grafanaPlugin, lib }:
grafanaPlugin rec {
pname = "volkovlabs-rss-datasource";
version = "4.2.0";
zipHash = "sha256-+3tgvpH6xlJORqN4Sx7qwzsiQZoLwdarzhx6kHvtOoY=";
meta = with lib; {
description = "The RSS/Atom data source is a plugin for Grafana that retrieves RSS/Atom feeds and allows visualizing them using Dynamic Text and other panels.";
license = licenses.asl20;
maintainers = with maintainers; [ nagisa ];
platforms = platforms.unix;
};
}