···5757 "-DgRPC_ABSL_PROVIDER=package"
5858 "-DBUILD_SHARED_LIBS=ON"
5959 "-DCMAKE_SKIP_BUILD_RPATH=OFF"
6060- "-DCMAKE_CXX_STANDARD=17"
6060+ # Needs to be compiled with -std=c++11 for clang < 11. Interestingly this is
6161+ # only an issue with the useLLVM stdenv, not the darwin stdenv…
6262+ # https://github.com/grpc/grpc/issues/26473#issuecomment-860885484
6363+ (if (stdenv.hostPlatform.useLLVM or false) && lib.versionOlder stdenv.cc.cc.version "11.0"
6464+ then "-DCMAKE_CXX_STANDARD=11"
6565+ else "-DCMAKE_CXX_STANDARD=17")
6166 ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
6267 "-D_gRPC_PROTOBUF_PROTOC_EXECUTABLE=${buildPackages.protobuf}/bin/protoc"
6368 ];
···6873 rm -vf BUILD
6974 '';
70757171- preBuild = ''
7676+ # When natively compiling, grpc_cpp_plugin is executed from the build directory,
7777+ # needing to load dynamic libraries from the build directory, so we set
7878+ # LD_LIBRARY_PATH to enable this. When cross compiling we need to avoid this,
7979+ # since it can cause the grpc_cpp_plugin executable from buildPackages to
8080+ # crash if build and host architecture are compatible (e. g. pkgsLLVM).
8181+ preBuild = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
7282 export LD_LIBRARY_PATH=$(pwd)''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH
7383 '';
7484
···22# Do not edit!
3344{
55- version = "2021.10.0";
55+ version = "2021.10.2";
66 components = {
77 "abode" = ps: with ps; [ abodepy ];
88 "accuweather" = ps: with ps; [ accuweather ];
···216216 "edimax" = ps: with ps; [ pyedimax ];
217217 "edl21" = ps: with ps; [ pysml ];
218218 "ee_brightbox" = ps: with ps; [ eebrightbox ];
219219- "efergy" = ps: with ps; [ ]; # missing inputs: pyefergy
219219+ "efergy" = ps: with ps; [ pyefergy ];
220220 "egardia" = ps: with ps; [ pythonegardia ];
221221 "eight_sleep" = ps: with ps; [ pyeight ];
222222 "elgato" = ps: with ps; [ elgato ];
+2-2
pkgs/servers/home-assistant/default.nix
···114114 extraBuildInputs = extraPackages py.pkgs;
115115116116 # Don't forget to run parse-requirements.py after updating
117117- hassVersion = "2021.10.0";
117117+ hassVersion = "2021.10.2";
118118119119in with py.pkgs; buildPythonApplication rec {
120120 pname = "homeassistant";
···131131 owner = "home-assistant";
132132 repo = "core";
133133 rev = version;
134134- sha256 = "0m54ynx0i4a6wljg6d9i6xa79c15cqah5cgaswgrbaxhjw5q78iv";
134134+ sha256 = "0nds4491v8wy4d8w842asjpjj7xhqghlq0h61i7z6wp8jln7m418";
135135 };
136136137137 # leave this in, so users don't have to constantly update their downstream patch handling
+2-2
pkgs/servers/home-assistant/frontend.nix
···44 # the frontend version corresponding to a specific home-assistant version can be found here
55 # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
66 pname = "home-assistant-frontend";
77- version = "20211006.0";
77+ version = "20211007.0";
8899 src = fetchPypi {
1010 inherit pname version;
1111- sha256 = "sha256-rlscTHqa1TMsIVW7kWFGR/feak0XewDRkybpo8dPXj0=";
1111+ sha256 = "sha256-GchSCqdVPk8RVe4iNEVvrsIgrV9/CHE5bQwyaT+ErvU=";
1212 };
13131414 # there is nothing to strip in this package