14 lines
398 B
Nix
14 lines
398 B
Nix
|
|
{ grafanaPlugin, lib }:
|
||
|
|
|
||
|
|
grafanaPlugin {
|
||
|
|
pname = "ventura-psychrometric-panel";
|
||
|
|
version = "5.0.3";
|
||
|
|
zipHash = "sha256-uGrLxbGNQa82dDhImZHaPAv0GbgV1SwgCHq6q4BjTUs=";
|
||
|
|
meta = with lib; {
|
||
|
|
description = "Grafana plugin to display air conditions on a psychrometric chart";
|
||
|
|
license = licenses.bsd3Lbnl;
|
||
|
|
maintainers = with maintainers; [ nagisa ];
|
||
|
|
platforms = platforms.unix;
|
||
|
|
};
|
||
|
|
}
|