godot-xterm/addons/godot_xterm/native/shell.nix
Leroy Hopson 6689ad1c09 Remove cross-compilation dependencies
It makes the github actions workflow take longer and cross-compiled
artifacts are not currently used (nor do they seem to work).
2020-11-21 19:44:43 +07:00

9 lines
156 B
Nix

with (import <nixpkgs> {});
mkShell {
buildInputs = with pkgs; [
git
scons
cacert # Required for git clone on GithHub actions runner.
];
}