11 lines
176 B
Nix
11 lines
176 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
rustc
|
|
cargo
|
|
helix
|
|
rust-analyzer
|
|
cargo-watch
|
|
sqlite-interactive
|
|
];
|
|
}
|