maj/shell.nix

11 lines
152 B
Nix
Raw Normal View History

2020-07-24 02:25:35 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
rustc cargo rls rustfmt cargo-watch
2020-07-25 16:39:10 +00:00
pkg-config
ncurses
2020-07-24 02:25:35 +00:00
];
}