37 lines
823 B
Nix
37 lines
823 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildHomeAssistantComponent,
|
|
aiofiles,
|
|
casttube,
|
|
websocket-client,
|
|
wakeonlan,
|
|
}:
|
|
|
|
buildHomeAssistantComponent rec {
|
|
owner = "ollo69";
|
|
domain = "samsungtv_smart";
|
|
version = "0.13.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ollo69";
|
|
repo = "ha-samsungtv-smart";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-12wx8HaTEFQZOnxfcuAKFOXPdDpfAl608N1E6gmWqBI=";
|
|
};
|
|
|
|
dependencies = [
|
|
aiofiles
|
|
casttube
|
|
websocket-client
|
|
wakeonlan
|
|
];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/ollo69/ha-samsungtv-smart/releases/tag/v${version}";
|
|
description = "Home Assistant Samsung TV Integration";
|
|
homepage = "https://github.com/ollo69/ha-samsungtv-smart";
|
|
maintainers = with maintainers; [ mindstorms6 ];
|
|
license = licenses.asl20;
|
|
};
|
|
}
|