build(nix): install RA into dev-shell (#6688)

Instead of forcing NIx users of the respository (me) to install RA
globally, we can install the equivalent version of whatever Rust version
we depend on.
This commit is contained in:
Thomas Eizinger
2024-09-13 16:10:10 -04:00
committed by GitHub
parent ab3e42b1b4
commit d8cf1e9a51

View File

@@ -57,7 +57,7 @@
packages = [ pkgs.cargo-tauri pkgs.iptables pkgs.nodePackages.pnpm cargo-udeps pkgs.cargo-sort ];
buildInputs = packages ++ [
(rustVersion.override {
extensions = [ "rust-src" ];
extensions = [ "rust-src" "rust-analyzer" ];
targets = [ "x86_64-unknown-linux-musl" ];
})
];