···44 # the frontend version corresponding to a specific home-assistant version can be found here55 # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json66 pname = "home-assistant-frontend";77- version = "20220907.2";77+ version = "20221005.0";88 format = "wheel";991010 src = fetchPypi {···1212 pname = "home_assistant_frontend";1313 dist = "py3";1414 python = "py3";1515- sha256 = "sha256-ykId53EMPRXmMmoS55ZtjF6UR/JVPtBXFqjwuK2E2F4=";1515+ sha256 = "sha256-Tc6MxUPEdL7jOyUwGm1H0c3w7HC15NZ1FGyp681GRYw=";1616 };17171818 # there is nothing to strip in this package
···11{ lib, stdenv, fetchzip }:2233let44- version = "22.2.4";44+ version = "22.2.5";55 platform = if stdenv.isLinux then "linux" else "darwin";66 arch = if stdenv.isAarch64 then "arm" else "amd";77 sha256s = {88 darwin.amd = "sha256-AXk3aP1SGiHTfHTCBRTagX0DAVmdcVVIkxWaTnZxB8g=";99 darwin.arm = "sha256-pvOVvNc8lZ2d2fVZVYWvumVWYpnLORNY/3o1t4BN2N4=";1010- linux.amd = "sha256-2JoHy0SF/oj86Dhu47g2IYTiNdjB2Bu/Zc0DGYaUjLo=";1010+ linux.amd = "sha256-cQtUu3mVTcRm1HYlzw+nOqTOx6W0XuALkip9uFXyLeM=";1111 linux.arm = "sha256-WHjYAbytiu747jFqN0KZ/CkIwAVI7fb32ywtRiQOBm8=";1212 };1313in stdenv.mkDerivation rec {
+1-1
pkgs/servers/sql/mariadb/default.nix
···106106 postInstall = ''107107 # Remove Development components. Need to use libmysqlclient.108108 rm "$out"/lib/mysql/plugin/daemon_example.ini109109- rm "$out"/lib/{libmariadbclient.a,libmysqlclient.a,libmysqlclient_r.a,libmysqlservices.a}109109+ rm "$out"/lib/{libmariadb.a,libmariadbclient.a,libmysqlclient.a,libmysqlclient_r.a,libmysqlservices.a}110110 rm -f "$out"/bin/{mariadb-config,mariadb_config,mysql_config}111111 rm -r $out/include112112 rm -r $out/lib/pkgconfig
+3
pkgs/test/cuda/cuda-samples/extension.nix
···1111 "11.4" = "082dkk5y34wyvjgj2p5j1d00rk8xaxb9z0mhvz16bd469r1bw2qk";1212 "11.5" = "sha256-AKRZbke0K59lakhTi8dX2cR2aBuWPZkiQxyKaZTvHrI=";1313 "11.6" = "sha256-AsLNmAplfuQbXg9zt09tXAuFJ524EtTYsQuUlV1tPkE=";1414+ # the tag 11.7 does not exists: see https://github.com/NVIDIA/cuda-samples/issues/1281515+ # maybe fixed by https://github.com/NVIDIA/cuda-samples/pull/1331616+ "11.7" = throw "The tag 11.7 of cuda-samples does not exists (see see https://github.com/NVIDIA/cuda-samples/issues/128)";1417 }.${prev.cudaVersion};15181619in {