Hi all,
I would like to use the rust programming language on my Guix System
laptop. The project work on requires the version of cargo to be at least
1.85.0 because it uses the "2024 edition" of rust.
Unfortunately, the current version of Guix package rust-cargo is 1.83.
I was able to install rustup using emulated FHS:
```sh
guix shell --network --container --emulate-fhs bash coreutils curl grep \
nss-certs gcc-toolchain pkg-config glib cairo at-spi2-core pango \
gdk-pixbuf gtk+ git --share=$HOME=/tmp/home -- bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```
The rustup binaries are not persisted when the shell is exited. I may
need to share additional folders.
I would rather install rust directly using Guix. For those that use
rust edition 2024, how do you install rust? What would it take to
provide an additional recent version of cargo for development?
I tried to patch the package definition for rust-cargo to upgrade the
version without much success.
Thanks in advance,
Polyedre