about summary refs log tree commit diff stats
path: root/nix.shell
blob: 00fef515c0f2ee8b9f4e32982c92ff562a4af404 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
    nativeBuildInputs = with pkgs; [
        python311
        python311Packages.pip
        virtualenv

        gcc gnumake binutils cmake ninja pkg-config
        musl qemu swig4
        gdb
    ];
}