Skip to content

Commit

Permalink
home-assistant: fix compat with python-matter-server 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt committed Jan 22, 2025
1 parent 8be8df2 commit 17b228c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pkgs/servers/home-assistant/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
callPackage,
fetchFromGitHub,
fetchPypi,
fetchpatch2,
python313,
substituteAll,
ffmpeg-headless,
Expand Down Expand Up @@ -364,6 +365,12 @@ python.pkgs.buildPythonApplication rec {
src = ./patches/ffmpeg-path.patch;
ffmpeg = "${lib.getExe ffmpeg-headless}";
})

(fetchpatch2 {
# python-matter-server 7.0 compat
url = "https://github.com/home-assistant/core/commit/ea4931ca3a91920b66a747a18a2dece2c8215d4f.patch";
hash = "sha256-evfMdBdEYsVSu2iDZ5xgNTg/QljJ+MXrV69g9liNcN4=";
})
];

postPatch = ''
Expand Down

0 comments on commit 17b228c

Please sign in to comment.