summaryrefslogtreecommitdiffstats
path: root/bytecode/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'bytecode/shell.nix')
-rw-r--r--bytecode/shell.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/bytecode/shell.nix b/bytecode/shell.nix
new file mode 100644
index 0000000..2b86acd
--- /dev/null
+++ b/bytecode/shell.nix
@@ -0,0 +1,6 @@
+{ pkgs ? import <nixpkgs> {} }:
+with pkgs;
+mkShell {
+ nativeBuildInputs = [ gcc gnumake valgrind gdb ];
+ hardeningDisable = [ "fortify" ];
+}