mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
Merge pull request #331411 from mweinelt/fix-frigate-component-owner
home-assistant-custom-components.frigate: fix owner
This commit is contained in:
commit
f10e6083ec
@ -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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user