mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
home-assistant-custom-components.adaptive_lighting: init at 1.19.1
This commit is contained in:
parent
cf117dbdd3
commit
2453c821f0
@ -0,0 +1,30 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildHomeAssistantComponent
|
||||
, ulid-transform
|
||||
}:
|
||||
|
||||
buildHomeAssistantComponent rec {
|
||||
owner = "basnijholt";
|
||||
domain = "adaptive_lighting";
|
||||
version = "1.19.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "basnijholt";
|
||||
repo = "adaptive-lighting";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-AZsloE1vNQ9o2pg878J6I5qYXyI4fqYEvr18SrTocWo=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ulid-transform
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
changelog = "https://github.com/basnijholt/adaptive-lighting/releases/tag/${version}";
|
||||
description = "Home Assistant Adaptive Lighting Plugin - Sun Synchronized Lighting";
|
||||
homepage = "https://github.com/basnijholt/adaptive-lighting";
|
||||
maintainers = with maintainers; [ mindstorms6 ];
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
@ -2,6 +2,7 @@
|
||||
}:
|
||||
|
||||
{
|
||||
adaptive_lighting = callPackage ./adaptive_lighting {};
|
||||
miele = callPackage ./miele {};
|
||||
prometheus_sensor = callPackage ./prometheus_sensor {};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user