home-assistant-custom-components.frigate: 5.2.0 -> 5.3.0

https://github.com/blakeblackshear/frigate-hass-integration/releases/tag/v5.3.0
This commit is contained in:
Martin Weinelt
2024-08-01 03:15:36 +02:00
committed by Florian Brandes
parent 954841e89a
commit fb2b0e3621

View File

@@ -1,24 +1,23 @@
{ lib {
, fetchFromGitHub lib,
, buildHomeAssistantComponent fetchFromGitHub,
, pytz buildHomeAssistantComponent,
pytz,
}: }:
buildHomeAssistantComponent rec { buildHomeAssistantComponent rec {
owner = "presto8"; owner = "blakeblackshear";
domain = "frigate"; domain = "frigate";
version = "5.2.0"; version = "5.3.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "blakeblackshear"; owner = "blakeblackshear";
repo = "frigate-hass-integration"; repo = "frigate-hass-integration";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-OWpOYNVzowdn0iZfJwhdMrAYeqDpNJvSwHpsJX9fDk4="; hash = "sha256-0eTEgRDgm4+Om2uqrt24Gj7dSdA6OJs/0oi5J5SHOyI=";
}; };
propagatedBuildInputs = [ dependencies = [ pytz ];
pytz
];
dontBuild = true; dontBuild = true;