about summary refs log tree commit diff stats
path: root/nix.shell
diff options
context:
space:
mode:
Diffstat (limited to 'nix.shell')
-rw-r--r--nix.shell12
1 files changed, 12 insertions, 0 deletions
diff --git a/nix.shell b/nix.shell
new file mode 100644
index 0000000..00fef51
--- /dev/null
+++ b/nix.shell
@@ -0,0 +1,12 @@
+{ pkgs ? import <nixpkgs> {} }:
+pkgs.mkShell {
+    nativeBuildInputs = with pkgs; [
+        python311
+        python311Packages.pip
+        virtualenv
+
+        gcc gnumake binutils cmake ninja pkg-config
+        musl qemu swig4
+        gdb
+    ];
+}