diff options
| author | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-02-25 15:48:20 +0100 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-02-25 15:48:20 +0100 |
| commit | 849e5a6ec6e0246b5dde1fb2583aa13ed288e9c1 (patch) | |
| tree | 0596e7ffdd2b18a1e7977a49b55afb6f46976f6a /nix.shell | |
| parent | ed536f04a716d585ce54bab0413f57aba1284b91 (diff) | |
| parent | a514b34d6f708ee80c4f0df91fefa9871d87ad39 (diff) | |
| download | focaccia-849e5a6ec6e0246b5dde1fb2583aa13ed288e9c1.tar.gz focaccia-849e5a6ec6e0246b5dde1fb2583aa13ed288e9c1.zip | |
Merge branch 'ta/develop'
Diffstat (limited to 'nix.shell')
| -rw-r--r-- | nix.shell | 12 |
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 + ]; +} |