Unverified Commit f10e6083 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

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

home-assistant-custom-components.frigate: fix owner
parents fa768fbd 21e8dda8
Loading
Loading
Loading
Loading
+9 −10
Original line number Diff line number Diff line
{ lib
, fetchFromGitHub
, buildHomeAssistantComponent
, pytz
{
  lib,
  fetchFromGitHub,
  buildHomeAssistantComponent,
  pytz,
}:

buildHomeAssistantComponent rec {
  owner = "presto8";
  owner = "blakeblackshear";
  domain = "frigate";
  version = "5.2.0";
  version = "5.3.0";

  src = fetchFromGitHub {
    owner = "blakeblackshear";
    repo = "frigate-hass-integration";
    rev = "v${version}";
    hash = "sha256-OWpOYNVzowdn0iZfJwhdMrAYeqDpNJvSwHpsJX9fDk4=";
    hash = "sha256-0eTEgRDgm4+Om2uqrt24Gj7dSdA6OJs/0oi5J5SHOyI=";
  };

  propagatedBuildInputs = [
    pytz
  ];
  dependencies = [ pytz ];

  dontBuild = true;