Merge pull request #331411 from mweinelt/fix-frigate-component-owner

home-assistant-custom-components.frigate: fix owner
This commit is contained in:
Martin Weinelt 2024-08-03 03:52:43 +02:00 committed by GitHub
commit f10e6083ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;