Unverified Commit b86a43a2 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

go-hass-agent: 14.10.3 -> 14.11.0 (#514900)

parents e11fefe6 3bc0a2f6
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -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;
  };
})