14 lines
417 B
Nix
14 lines
417 B
Nix
|
|
{ grafanaPlugin, lib }:
|
||
|
|
|
||
|
|
grafanaPlugin {
|
||
|
|
pname = "fetzerch-sunandmoon-datasource";
|
||
|
|
version = "0.3.3";
|
||
|
|
zipHash = "sha256-IJe1OiPt9MxqqPymuH0K27jToSb92M0P4XGZXvk0paE=";
|
||
|
|
meta = with lib; {
|
||
|
|
description = "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;
|
||
|
|
};
|
||
|
|
}
|