5 lines
146 B
Nix
5 lines
146 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
buildInputs = [ ];
|
|
nativeBuildInputs = with pkgs; [ gdb autoreconfHook emscripten wabt go ];
|
|
}
|