Files
nix-config/packages/ha-openhasp/default.nix
mjallen18 6f5e592d8c cleanup
2025-07-28 11:06:32 -05:00

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 = [ ];
};
}