diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/auto-entities/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/auto-entities/package.nix index 6c79dffa15f6..6a818050dec1 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/auto-entities/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/auto-entities/package.nix @@ -6,30 +6,33 @@ buildNpmPackage rec { pname = "auto-entities"; - version = "1.16.1"; + version = "2.0.0"; src = fetchFromGitHub { - owner = "thomasloven"; + owner = "Lint-Free-Technology"; repo = "lovelace-auto-entities"; tag = "v${version}"; - hash = "sha256-yMqf4LA/fBTIrrYwacUTb2fL758ZB1k471vdsHAiOj8="; + hash = "sha256-W6D9z4D00wIVmrUo9KFlttK2k013kHbWXKwbyh9bsLY="; }; - npmDepsHash = "sha256-XLhTLK08zW1BFj/PI8/61FWzoyvWi5X5sEkGlF1IuZU="; + npmDepsHash = "sha256-H9Mt5lBZAZwkGfPSRlbgPaqHETWxI7Wge7zEPLcdvgE="; installPhase = '' runHook preInstall - install -D auto-entities.js $out/auto-entities.js + install -D dist/auto-entities.js $out/auto-entities.js runHook postInstall ''; meta = { description = "Automatically populate the entities-list of lovelace cards"; - homepage = "https://github.com/thomasloven/lovelace-auto-entities"; - changelog = "https://github.com/thomasloven/lovelace-auto-entities/releases/tag/v${version}"; + homepage = "https://github.com/Lint-Free-Technology/lovelace-auto-entities"; + changelog = "https://github.com/Lint-Free-Technology/lovelace-auto-entities/releases/tag/v${version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ kranzes ]; + maintainers = with lib.maintainers; [ + kranzes + SuperSandro2000 + ]; }; }