templates/rust/cargo-stable/crane/shell.nix

10 lines
192 B
Nix

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