lol

home-assistant-custom-components.volvo_cars: init at 1.5.1 (#400542)

authored by

Martin Weinelt and committed by
GitHub
22005dd1 f2310ab2

+26
+26
pkgs/servers/home-assistant/custom-components/volvo_cars/package.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + buildHomeAssistantComponent, 5 + }: 6 + 7 + buildHomeAssistantComponent rec { 8 + owner = "thomasddn"; 9 + domain = "volvo_cars"; 10 + version = "1.5.1"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "thomasddn"; 14 + repo = "ha-volvo-cars"; 15 + tag = "v${version}"; 16 + hash = "sha256-UG/anp9ThEOQsRWraTayuyx6kS9r2vTH/8Bak4ZzYzo"; 17 + }; 18 + 19 + meta = with lib; { 20 + changelog = "https://github.com/thomasddn/ha-volvo-cars/releases/tag/${src.tag}"; 21 + homepage = "https://github.com/thomasddn/ha-volvo-cars"; 22 + description = "Volvo Cars Home Assistant integration"; 23 + maintainers = with maintainers; [ seberm ]; 24 + license = licenses.gpl3Only; 25 + }; 26 + }