mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-04-19 22:38:29 +02:00
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
|
|
];
|
|
}
|