mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-12 21:50:26 +01:00
bdda1458c0
Adds some files to making building and export for HTML5 more convenient.
13 lines
232 B
Nix
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
|
|
];
|
|
}
|