roulette-rs/shell.nix

9 lines
178 B
Nix
Raw Permalink Normal View History

2022-11-13 19:43:55 -05:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs; [
gdb
lldb
];
}