lena/shell.nix

12 lines
219 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
rustc cargo rustfmt rls rust-analyzer
pkg-config sqlite openssl
# keep this line if you use bash
pkgs.bashInteractive
];
}