Skip to content

Commit

Permalink
home-assistant-custom-lovelace-modules.frigate-hass-card: init at 6.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nealfennimore committed Jan 7, 2025
1 parent 2113e42 commit 0d2a4c5
Showing 1 changed file with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
lib,
stdenv,
fetchzip,
}:
stdenv.mkDerivation rec {
pname = "frigate-hass-card";
version = "6.1.2";

src = fetchzip {
url = "https://github.com/dermotduffy/frigate-hass-card/releases/download/v${version}/frigate-hass-card.zip";
sha256 = "sha256-9k8xWearg4L0cgTaKv/DFkFsWBMH2uh9bbRq+SYhqMU=";
};

dontBuild = true;

installPhase = ''
runHook preInstall
mkdir $out
cp * $out/
runHook postInstall
'';

meta = {
description = "A Lovelace card for Frigate in Home Assistant";
homepage = "https://github.com/dermotduffy/frigate-hass-card";
changelog = "https://github.com/dermotduffy/frigate-hass-card/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nealfennimore ];
};
}

0 comments on commit 0d2a4c5

Please sign in to comment.