godot-xterm/addons/godot_xterm/native/shell.nix
Leroy Hopson bdda1458c0
Update files for javascript build and export
Adds some files to making building and export for HTML5 more convenient.
2021-06-15 14:02:40 +07:00

13 lines
232 B
Nix

with (import <nixpkgs> {});
mkShell {
buildInputs = with pkgs; [
git
scons
cacert # Required for git clone on GithHub actions runner.
# Used to build for javascript platform.
docker
docker-compose
];
}