mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
home-assistant-custom-components.xiaomi_miot: add meta.longDescription, remove with lib
(cherry picked from commit c4c6f50302
)
This commit is contained in:
parent
004380f3b9
commit
6da5d4e441
@ -30,11 +30,24 @@ buildHomeAssistantComponent rec {
|
|||||||
|
|
||||||
passthru.updateScript = nix-update-script { };
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
changelog = "https://github.com/al-one/hass-xiaomi-miot/releases/tag/v${version}";
|
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";
|
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";
|
homepage = "https://github.com/al-one/hass-xiaomi-miot";
|
||||||
maintainers = with maintainers; [ azuwis ];
|
maintainers = with lib.maintainers; [ azuwis ];
|
||||||
license = licenses.asl20;
|
license = lib.licenses.asl20;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user