Skip to content

Commit

Permalink
home-assistant-custom-lovelace-modules.dirigera_platform: init at 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rhoriguchi committed Oct 22, 2024
1 parent eae7121 commit 764714a
Showing 1 changed file with 47 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
lib,
fetchFromGitHub,
buildHomeAssistantComponent,
dirigera,
}:

buildHomeAssistantComponent rec {
owner = "sanjoyg";
domain = "dirigera_platform";
version = "2.3";

src = fetchFromGitHub {
owner = "sanjoyg";
repo = "dirigera_platform";
rev = version;
hash = "sha256-P4yjZ+SQSLSHI3m3wBlH9YlGlktURoGA1jFFxJ7B020=";
};

propagatedBuildInputs = [
dirigera

# (dirigera.overrideAttrs (_: {
# doCheck = false;
# }))

# (dirigera.overrideAttrs (_: rec {
# version = "1.2.0";

# src = fetchFromGitHub {
# owner = "Leggin";
# repo = "dirigera";
# rev = "refs/tags/v${version}";
# hash = "sha256-JmrKeHypWhqOWO0LpzNe1qyeXuYnMyZoM+2IQbz6WDU=";
# };

# doCheck = false;
# }))
];

meta = with lib; {
description = "Home-assistant integration for IKEA Dirigera hub";
homepage = "https://github.com/sanjoyg/dirigera_platform";
maintainers = with maintainers; [ rhoriguchi ];
license = licenses.mit;
};
}

0 comments on commit 764714a

Please sign in to comment.