Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchFromGitHub, 4 buildHomeAssistantComponent, 5}: 6buildHomeAssistantComponent rec { 7 owner = "bjrnptrsn"; 8 domain = "climate_group"; 9 version = "1.0.7"; 10 11 src = fetchFromGitHub { 12 inherit owner; 13 repo = "climate_group"; 14 tag = version; 15 hash = "sha256-f/VQUNzRSxmKGNgijaafQ5NbngUUKmcdkafYC3Ol9qM="; 16 }; 17 18 meta = { 19 changelog = "https://github.com/bjrnptrsn/climate_group/blob/${src.rev}/README.md#changelog"; 20 description = "Group multiple climate devices to a single entity"; 21 homepage = "https://github.com/bjrnptrsn/climate_group"; 22 maintainers = builtins.attrValues { inherit (lib.maintainers) jamiemagee; }; 23 license = lib.licenses.mit; 24 }; 25}