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,
|
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}";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue