confix/modules/packages/river-bsp-layout/shell.nix

12 lines
295 B
Nix
Raw Normal View History

2024-02-13 00:25:27 -05:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
# Get dependencies from the main package
inputsFrom = [ (pkgs.callPackage ./default.nix { }) ];
# Additional tooling
buildInputs = with pkgs; [
rust-analyzer # LSP Server
rustfmt # Formatter
clippy # Linter
];
}