···2020 pkgs.runCommand "unit-${mkPathSafeName name}"
2121 { preferLocalBuild = true;
2222 allowSubstitutes = false;
2323- inherit (unit) text;
2323+ # unit.text can be null. But variables that are null listed in
2424+ # passAsFile are ignored by nix, resulting in no file being created,
2525+ # making the mv operation fail.
2626+ text = optionalString (unit.text != null) unit.text;
2427 passAsFile = [ "text" ];
2528 }
2629 ''
···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 = "20231005.0";
77+ version = "20231030.1";
88 format = "wheel";
991010 src = fetchPypi {
···1212 pname = "home_assistant_frontend";
1313 dist = "py3";
1414 python = "py3";
1515- hash = "sha256-p93bo5+VQykcuK5f0r848tMoANSexvHDVBm7f3IYOMM=";
1515+ hash = "sha256-S363j7HnOxLqCBaml1Kb9xfY0AaqBIgj09NutByn6Xo=";
1616 };
17171818 # there is nothing to strip in this package