home-assistant-custom-components.yassi: drop (#393106)

authored by

Martin Weinelt and committed by
GitHub
50dd0c6f 7b9e9c8d

-29
-29
pkgs/servers/home-assistant/custom-components/yassi/package.nix
··· 1 - { 2 - lib, 3 - buildHomeAssistantComponent, 4 - fetchFromGitHub, 5 - pysmartthings, 6 - }: 7 - 8 - buildHomeAssistantComponent rec { 9 - owner = "samuelspagl"; 10 - domain = "samsung_soundbar"; 11 - version = "0.4.1"; 12 - 13 - src = fetchFromGitHub { 14 - inherit owner; 15 - repo = "ha_samsung_soundbar"; 16 - rev = version; 17 - hash = "sha256-uhyUQebAx4g1PT/urbyx8EZNFE9vIY0bUAKmgCwY3aQ="; 18 - }; 19 - 20 - dependencies = [ pysmartthings ]; 21 - 22 - meta = with lib; { 23 - description = "HomeAssistant integration for Samsung Soundbars"; 24 - homepage = "https://ha-samsung-soundbar.vercel.app/"; 25 - changelog = "https://github.com/samuelspagl/ha_samsung_soundbar/releases/tag/${version}"; 26 - maintainers = with maintainers; [ k900 ]; 27 - license = licenses.mit; 28 - }; 29 - }