lol

Merge pull request #298943 from Ramblurr/init-hacompanion

hacompanion: init at 1.0.11

authored by

superherointj and committed by
GitHub
fd84c1ff 52bff701

+27
+27
pkgs/by-name/ha/hacompanion/package.nix
··· 1 + { lib, 2 + fetchFromGitHub, 3 + buildGoModule 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "hacompanion"; 8 + version = "1.0.11"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "tobias-kuendig"; 12 + repo = "hacompanion"; 13 + rev = "v${version}"; 14 + hash = "sha256-gTsA5XBjLlm/cITwQwYNudPK9SbSEaiAIjjdvRS3+8Q="; 15 + }; 16 + 17 + vendorHash = "sha256-ZZ8nxN+zUeFhSXyoHLMgzeFllnIkKdoVnbVK5KjrLEQ="; 18 + 19 + meta = { 20 + changelog = "https://github.com/tobias-kuendig/hacompanion/releases/tag/v${version}"; 21 + description = "Daemon that sends local hardware information to Home Assistant"; 22 + homepage = "https://github.com/tobias-kuendig/hacompanion"; 23 + license = lib.licenses.mit; 24 + platforms = lib.platforms.linux; 25 + maintainers = with lib.maintainers; [ ramblurr ]; 26 + }; 27 + }