Merge pull request #297600 from presto8/home-assistant-frigate

home-assistant-custom-components.frigate: init at 5.1.0
This commit is contained in:
Martin Weinelt 2024-03-21 13:54:13 +01:00 committed by GitHub
commit b7e937e274
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 34 additions and 0 deletions

View File

@ -12,6 +12,8 @@
epex_spot = callPackage ./epex_spot {};
frigate = callPackage ./frigate {};
govee-lan = callPackage ./govee-lan {};
gpio = callPackage ./gpio {};

View File

@ -0,0 +1,32 @@
{ lib
, fetchFromGitHub
, buildHomeAssistantComponent
, pytz
}:
buildHomeAssistantComponent rec {
owner = "presto8";
domain = "frigate";
version = "5.1.0";
src = fetchFromGitHub {
owner = "blakeblackshear";
repo = "frigate-hass-integration";
rev = "v${version}";
hash = "sha256-6W9U0Q0wW36RsErvtFQo1sc1AF7js6MMHxgMQcDFexw=";
};
propagatedBuildInputs = [
pytz
];
dontBuild = true;
meta = with lib; {
description = "Provides Home Assistant integration to interface with a separately running Frigate service";
homepage = "https://github.com/blakeblackshear/frigate-hass-integration";
changelog = "https://github.com/blakeblackshear/frigate-hass-integration/releases/tag/v${version}";
maintainers = with maintainers; [ presto8 ];
license = licenses.mit;
};
}