mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
6689ad1c09
It makes the github actions workflow take longer and cross-compiled artifacts are not currently used (nor do they seem to work).
9 lines
156 B
Nix
9 lines
156 B
Nix
with (import <nixpkgs> {});
|
|
mkShell {
|
|
buildInputs = with pkgs; [
|
|
git
|
|
scons
|
|
|
|
cacert # Required for git clone on GithHub actions runner.
|
|
];
|
|
}
|