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, mkShell,
rust-analyzer, rustc,
cargo,
rustfmt, rustfmt,
clippy, clippy,
cargo, taplo,
gcc, rust-analyzer-unwrapped,
openssl, rustPlatform,
pkg-config,
rustc,
}: }:
mkShell { mkShell {
name = "eris"; name = "rust";
packages = [ packages = [
rust-analyzer rustc
rustfmt cargo
(rustfmt.override {asNightly = true;})
clippy clippy
cargo cargo
gcc taplo
clippy rust-analyzer-unwrapped
rustfmt
rustc
# For TLS and friends
openssl
pkg-config
]; ];
RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
} }