Merge pull request #326980 from mindstorms6/homeassistant-alarmo
home-assistant-custom-components.alarmo: init at 1.10.4
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
buildHomeAssistantComponent,
|
||||
}:
|
||||
|
||||
buildHomeAssistantComponent rec {
|
||||
owner = "nielsfaber";
|
||||
domain = "alarmo";
|
||||
version = "1.10.4";
|
||||
|
||||
postInstall = ''
|
||||
cd $out/custom_components/alarmo/frontend
|
||||
ls . | grep -v dist | xargs rm -rf
|
||||
'';
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nielsfaber";
|
||||
repo = "alarmo";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-/hNzGPckLHUX0mrBF3ugAXstrOc1mWdati+nRJCwldc=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
changelog = "https://github.com/nielsfaber/alarmo/releases/tag/v${version}";
|
||||
description = "Alarm System for Home Assistant";
|
||||
homepage = "https://github.com/nielsfaber/alarmo";
|
||||
maintainers = with maintainers; [ mindstorms6 ];
|
||||
license = licenses.unfree;
|
||||
};
|
||||
}
|
||||
@@ -4,6 +4,8 @@
|
||||
{
|
||||
adaptive_lighting = callPackage ./adaptive_lighting {};
|
||||
|
||||
alarmo = callPackage ./alarmo {};
|
||||
|
||||
auth-header = callPackage ./auth-header {};
|
||||
|
||||
awtrix = callPackage ./awtrix {};
|
||||
|
||||
Reference in New Issue
Block a user