When running flutter run -v I get the following output:
[ +3 ms] SEVERE: ================================================================================
[ ] SEVERE: Cargokit BuildTool failed with error:
[ ] SEVERE: --------------------------------------------------------------------------------
[ ] SEVERE:
[ ] SEVERE: rustup not found in PATH.
[ ] SEVERE:
[ ] SEVERE: Maybe you need to install Rust? It only takes a minute:
[ ] SEVERE:
[ ] SEVERE: $ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
[ ] SEVERE:
[ ] SEVERE:
... which I assume is the culprit of [+7091 ms] Error: Build process failed shown later.
This error makes sense, because I don't have rustup installed on my system, since rust toolchain is supplied by the nix dev shell.
I suggest that before invoking rustup, Cargokit checks if a suitable version of rustc is already installed.
When running
flutter run -vI get the following output:... which I assume is the culprit of
[+7091 ms] Error: Build process failedshown later.This error makes sense, because I don't have rustup installed on my system, since rust toolchain is supplied by the nix dev shell.
I suggest that before invoking
rustup, Cargokit checks if a suitable version ofrustcis already installed.