nixpkgs/pkgs/servers/home-assistant/custom-components/homematicip_local/default.nix

31 lines
759 B
Nix

{ lib
, buildHomeAssistantComponent
, fetchFromGitHub
, hahomematic
}:
buildHomeAssistantComponent rec {
owner = "danielperna84";
domain = "homematicip_local";
version = "1.58.0";
src = fetchFromGitHub {
owner = "danielperna84";
repo = "custom_homematic";
rev = "refs/tags/${version}";
hash = "sha256-ianM29eF2MN2THS3CTg4tBkd+8pV/m1fg8VvMDhhadg=";
};
dependencies = [
hahomematic
];
meta = {
changelog = "https://github.com/danielperna84/custom_homematic/blob/${version}/changelog.md";
description = "Custom Home Assistant Component for HomeMatic";
homepage = "https://github.com/danielperna84/custom_homematic";
maintainers = with lib.maintainers; [ dotlambda ];
license = lib.licenses.mit;
};
}