summaryrefslogtreecommitdiffstats
path: root/bytecode/shell.nix
blob: 2b86acd8f9a8e76ef3aec360fa9391cae47c4305 (plain) (blame)
1
2
3
4
5
6
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
  nativeBuildInputs = [ gcc gnumake valgrind gdb ];
  hardeningDisable = [ "fortify" ];
}