nix: clean up devshell
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Ia844e89f1450cce1625c57c9d81279706a6a6964
This commit is contained in:
parent
8aa39cfb1a
commit
dd7e41eb64
1 changed files with 15 additions and 17 deletions
|
|
@ -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}";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue