31 lines
770 B
Nix
31 lines
770 B
Nix
{
|
|
buildHomeAssistantComponent,
|
|
fetchFromGitHub,
|
|
# pkgs,
|
|
# namespace,
|
|
...
|
|
}:
|
|
buildHomeAssistantComponent rec {
|
|
owner = "HASSwitchPlate";
|
|
domain = "openHASP";
|
|
version = "0.7.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = owner;
|
|
repo = "openHASP-custom-component";
|
|
rev = version;
|
|
hash = "sha256-UvUowCgfay9aRV+iC/AQ9vvJzhGZbH+/1kVjxPFBKcI=";
|
|
};
|
|
|
|
# propagatedBuildInputs = [
|
|
# pkgs.${namespace}.pyoverseerr
|
|
# ];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/HASSwitchPlate/openHASP-custom-component/releases/tag/${version}";
|
|
description = "This custom component simplifies synchronization of objects on one or more openHASP";
|
|
homepage = "https://github.com/HASSwitchPlate/openHASP-custom-component";
|
|
maintainers = [ ];
|
|
};
|
|
}
|