Merge pull request #311335 from azuwis/xiaomi_gateway3

home-assistant-custom-components.xiaomi_gateway3: 4.0.3 -> 4.0.5

authored by Martin Weinelt and committed by GitHub 4e91d7cf cc058139

+11 -9
+11 -9
pkgs/servers/home-assistant/custom-components/xiaomi_gateway3/default.nix
··· 1 - { lib 2 - , buildHomeAssistantComponent 3 - , fetchFromGitHub 4 - , zigpy 5 }: 6 7 buildHomeAssistantComponent rec { 8 owner = "AlexxIT"; 9 domain = "xiaomi_gateway3"; 10 - version = "4.0.3"; 11 12 src = fetchFromGitHub { 13 owner = "AlexxIT"; 14 repo = "XiaomiGateway3"; 15 rev = "v${version}"; 16 - hash = "sha256-YGaVQaz3A0yM8AIC02CvMKWMJ3tW3OADYgKY8ViIt5U="; 17 }; 18 19 - propagatedBuildInputs = [ 20 - zigpy 21 - ]; 22 23 dontBuild = true; 24 25 meta = with lib; { 26 changelog = "https://github.com/AlexxIT/XiaomiGateway3/releases/tag/v{version}";
··· 1 + { 2 + lib, 3 + buildHomeAssistantComponent, 4 + fetchFromGitHub, 5 + zigpy, 6 + nix-update-script, 7 }: 8 9 buildHomeAssistantComponent rec { 10 owner = "AlexxIT"; 11 domain = "xiaomi_gateway3"; 12 + version = "4.0.5"; 13 14 src = fetchFromGitHub { 15 owner = "AlexxIT"; 16 repo = "XiaomiGateway3"; 17 rev = "v${version}"; 18 + hash = "sha256-C8aY23e6iWANbhCRQYNHx+3fomVO+7qdxj+qfv+K3JM="; 19 }; 20 21 + propagatedBuildInputs = [ zigpy ]; 22 23 dontBuild = true; 24 + 25 + passthru.updateScript = nix-update-script { }; 26 27 meta = with lib; { 28 changelog = "https://github.com/AlexxIT/XiaomiGateway3/releases/tag/v{version}";