home-assistant-custom-components.frigate: init at 5.1.0

This commit is contained in:
Preston Hunt 2024-02-03 06:25:22 -08:00
parent b2f2956473
commit f512257d3f
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;
};
}