nix: clean up devshell

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ia844e89f1450cce1625c57c9d81279706a6a6964
This commit is contained in:
raf 2025-10-31 23:12:18 +03:00
commit dd7e41eb64
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -1,28 +1,26 @@
{
mkShell,
rust-analyzer,
rustc,
cargo,
rustfmt,
clippy,
cargo,
gcc,
openssl,
pkg-config,
rustc,
taplo,
rust-analyzer-unwrapped,
rustPlatform,
}:
mkShell {
name = "eris";
name = "rust";
packages = [
rust-analyzer
rustfmt
rustc
cargo
(rustfmt.override {asNightly = true;})
clippy
cargo
gcc
clippy
rustfmt
rustc
# For TLS and friends
openssl
pkg-config
taplo
rust-analyzer-unwrapped
];
RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
}