godot-xterm/addons/godot_xterm/native/shell.nix

17 lines
270 B
Nix
Raw Normal View History

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