feat: add debug adapters to nix shell
This commit is contained in:
parent
13fb093d33
commit
5ea809eaa0
8 changed files with 32 additions and 11 deletions
|
|
@ -8,5 +8,9 @@ let
|
|||
toolchain = fenixPkgs.${fenixToolchain}.toolchain;
|
||||
craneLib = (crane.mkLib pkgs).overrideToolchain toolchain;
|
||||
in craneLib.devShell {
|
||||
packages = [ fenixPkgs.rust-analyzer ];
|
||||
packages = [
|
||||
toolchain
|
||||
fenixPkgs.rust-analyzer
|
||||
pkgs.lldb_21
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,5 +7,9 @@ let
|
|||
fenixPkgs = fenix.packages.${pkgs.system};
|
||||
toolchain = fenixPkgs.${fenixToolchain}.toolchain;
|
||||
in mkShellNoCC {
|
||||
packages = [ toolchain fenixPkgs.rust-analyzer ];
|
||||
packages = [
|
||||
toolchain
|
||||
fenixPkgs.rust-analyzer
|
||||
pkgs.lldb_21
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue