Some kind of problem during vendor-staging with buildRustPackage

for some reason if during assembly:

{
  lib,
  fetchFromGitHub,
  rustPlatform,
}:

rustPlatform.buildRustPackage (finalAttrs: {
  pname = "rawst";
  version = "0.8.1";

  src = fetchFromGitHub {
    owner = "Jupiee";
    repo = "rawst";
    tag = "${finalAttrs.version}";
    hash = "sha256-+uhE80XoZyMBV+nmlP+C5DfoB+z4tyK69XGsuALxROs=";
  };

  RUSTC_BOOTSTRAP = true;

  cargoHash = "sha256-wS1dR6r3/4sg4DCMR8QZjbHgiSEhuu/v4MqJ6LxEKtY=";

  meta = {
    description = "Cli downloader, written in rust";
    homepage = "https://github.com/Jupiee/rawst  ";
    license = lib.licenses.gpl3;
    maintainers = with lib.maintainers; [ Inarizxc ];
    platforms = lib.platforms.linux;
    mainProgram = "rawst";
  };
})

the build stops at:

rawst-0.8.1-vendor-staging> Fetching https://crates.io/api/v1/crates/time-core/0.1.2/download   -> tarballs/time-core-0.1.2.tar.gz
┏━ Dependency Graph:
┃    ┌─ ⏵ rawst-0.8.1-vendor-staging (buildPhase) ⏱ 12h21s
┃ ┌─ ⏸ rawst-0.8.1-vendor
┃ ⏸ rawst-0.8.1
┣━━━ Builds
┗━ ∑ ⏵ 1 │ ✔ 0 │ ⏸ 2 │ ⏱ 1m25s

(not necessarily on https://crates.io/api/v1/crates/time-core/0.1.2/download always different)

and doesn’t continue

and everything works in a virtual machine