home-assistant-custom-components.xiaomi_miot: add meta.longDescription, remove with lib

(cherry picked from commit c4c6f50302)
This commit is contained in:
Zhong Jianxin 2024-11-19 20:31:02 +08:00 committed by github-actions[bot]
parent 004380f3b9
commit 6da5d4e441

View File

@ -30,11 +30,24 @@ buildHomeAssistantComponent rec {
passthru.updateScript = nix-update-script { };
meta = with lib; {
meta = {
changelog = "https://github.com/al-one/hass-xiaomi-miot/releases/tag/v${version}";
description = "Automatic integrate all Xiaomi devices to HomeAssistant via miot-spec, support Wi-Fi, BLE, ZigBee devices";
longDescription = ''
Xiaomi Miot For HomeAssistant depends on `ffmpeg` and `homekit`, example how to setup in NixOS `configuration.nix`:
```
{ config, lib, pkgs, ... }:
{
services.home-assistant = {
customComponents = [ pkgs.home-assistant-custom-components.xiaomi_miot ];
extraComponents = [ "ffmpeg" "homekit" ];
};
}
```
'';
homepage = "https://github.com/al-one/hass-xiaomi-miot";
maintainers = with maintainers; [ azuwis ];
license = licenses.asl20;
maintainers = with lib.maintainers; [ azuwis ];
license = lib.licenses.asl20;
};
}