zola: fix build with rust 1.45 (#129852)

The lexical_core 0.7.4 dependency doesn't build with rust 1.53.

The zola "next" branch updated it to 0.7.6 which builds fine so this
will be fixed in the next zola release. In the meantime, use the older
version of rust.

Changed files
+3
pkgs
top-level
+3
pkgs/top-level/all-packages.nix
···
zola = callPackage ../applications/misc/zola {
inherit (darwin.apple_sdk.frameworks) CoreServices;
};
zombietrackergps = libsForQt5.callPackage ../applications/gis/zombietrackergps { };
···
zola = callPackage ../applications/misc/zola {
inherit (darwin.apple_sdk.frameworks) CoreServices;
+
# Version 0.13.0 has the lexical_core 0.7.4 dependency that doesn't build
+
# with rust 1.53. This should be fixed in the next version.
+
rustPlatform = rustPackages_1_45.rustPlatform;
};
zombietrackergps = libsForQt5.callPackage ../applications/gis/zombietrackergps { };