diff --git a/pkgs/by-name/go/go-hass-agent/package.nix b/pkgs/by-name/go/go-hass-agent/package.nix index c3bd254510aa..e5e31ddf3951 100644 --- a/pkgs/by-name/go/go-hass-agent/package.nix +++ b/pkgs/by-name/go/go-hass-agent/package.nix @@ -9,20 +9,20 @@ }: buildGoModule (finalAttrs: { pname = "go-hass-agent"; - version = "14.10.3"; + version = "14.11.0"; src = fetchFromGitHub { owner = "joshuar"; repo = "go-hass-agent"; tag = "v${finalAttrs.version}"; - hash = "sha256-7F4zxxMKNrUiKonfO7dQQuODEnFgaFRM7Rzb7n1Erys="; + hash = "sha256-mC/Y1z2kudBZOEQU5S17ROx3iHPpDGGSkUJe7MMb/iE="; }; - vendorHash = "sha256-WPglpc8xqCW51LmdhGLAuB4jg96T72eRuaS61zagoNw="; + vendorHash = "sha256-Xz7u8SSlxlDB5HbKMbm1xVYrtp1/zy2yBgoWS3NcTew="; npmDeps = fetchNpmDeps { inherit (finalAttrs) src; - hash = "sha256-baO2S+NNgNgGjMNPrtmgaiiNTHv3vScOXQIVx1Xaxow="; + hash = "sha256-LwOVVVGWufQ+Q3jiv0H9lf7zg3R9fXvvAlLiUWqtmZs="; }; overrideModAttrs = oldAttrs: { @@ -72,7 +72,10 @@ buildGoModule (finalAttrs: { license = lib.licenses.mit; homepage = "https://github.com/joshuar/go-hass-agent"; changelog = "https://github.com/joshuar/go-hass-agent/blob/v${finalAttrs.version}/CHANGELOG.md"; - maintainers = [ lib.maintainers.ethancedwards8 ]; + maintainers = with lib.maintainers; [ + ethancedwards8 + nadir-ishiguro + ]; platforms = lib.platforms.linux; }; })