10 lines
206 B
Nix
10 lines
206 B
Nix
{ pkgs ? import <nixpkgs> {},
|
|
crane ? builtins.getFlake "github:ipetkov/crane"
|
|
}:
|
|
let inherit (pkgs)
|
|
rust-analyzer
|
|
lldb_21
|
|
;
|
|
in (crane.mkLib pkgs).devShell {
|
|
packages = [ rust-analyzer lldb_21 ];
|
|
}
|