nixpkgs/pkgs/servers/home-assistant/custom-components/samsungtv-smart/default.nix
Sigmanificient 543cd40ecc treewide: remove trailing space in description
Done using `grep -rP 'description\s+=\s+"[^"]+[ ]";' | cut -d ':' -f 1 |
xargs -i nvim {}` and sorting the opened files by hand, avoiding
generated packages list
2024-07-26 03:38:50 +02:00

38 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;
};
}