mirror of
https://github.com/NotAShelf/stash.git
synced 2026-04-13 06:23:47 +00:00
nix: update devshell
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I6a6a696451203d6ac74ae44dddec1bdce19e78d9
This commit is contained in:
parent
2db9a2904d
commit
404990f928
1 changed files with 11 additions and 6 deletions
|
|
@ -1,20 +1,25 @@
|
||||||
{
|
{
|
||||||
mkShell,
|
mkShell,
|
||||||
rust-analyzer,
|
|
||||||
rustfmt,
|
|
||||||
rustc,
|
rustc,
|
||||||
clippy,
|
|
||||||
cargo,
|
cargo,
|
||||||
|
rustfmt,
|
||||||
|
clippy,
|
||||||
|
taplo,
|
||||||
|
rust-analyzer-unwrapped,
|
||||||
rustPlatform,
|
rustPlatform,
|
||||||
}:
|
}:
|
||||||
mkShell {
|
mkShell {
|
||||||
name = "rust";
|
name = "rust";
|
||||||
|
|
||||||
packages = [
|
packages = [
|
||||||
rust-analyzer
|
rustc
|
||||||
rustfmt
|
cargo
|
||||||
|
|
||||||
|
(rustfmt.override {asNightly = true;})
|
||||||
clippy
|
clippy
|
||||||
cargo
|
cargo
|
||||||
rustc
|
taplo
|
||||||
|
rust-analyzer-unwrapped
|
||||||
];
|
];
|
||||||
|
|
||||||
RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
|
RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue