mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
hacompanion: init at 1.0.11
This commit is contained in:
parent
e5920b7b3c
commit
c7fb03ad0a
27
pkgs/by-name/ha/hacompanion/package.nix
Normal file
27
pkgs/by-name/ha/hacompanion/package.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib,
|
||||
fetchFromGitHub,
|
||||
buildGoModule
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "hacompanion";
|
||||
version = "1.0.11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tobias-kuendig";
|
||||
repo = "hacompanion";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-gTsA5XBjLlm/cITwQwYNudPK9SbSEaiAIjjdvRS3+8Q=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-ZZ8nxN+zUeFhSXyoHLMgzeFllnIkKdoVnbVK5KjrLEQ=";
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/tobias-kuendig/hacompanion/releases/tag/v${version}";
|
||||
description = "Daemon that sends local hardware information to Home Assistant";
|
||||
homepage = "https://github.com/tobias-kuendig/hacompanion";
|
||||
license = lib.licenses.mit;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [ ramblurr ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user