godot-xterm/addons/godot_xterm/native/shell.nix
Leroy Hopson 630e0104d5 Add support for Windows 64-bit
Tested on NixOS, Ubuntu and Arch Linux. Not yet able to compile for
Windows 32-bit on NixOS or on Windows itself.

Part of #5
2020-11-07 17:11:25 +07:00

21 lines
500 B
Nix

# Use --argstr system i686-linux to build for 32-bit linux.
{ system ? builtins.currentSystem }:
with (import <nixpkgs> {
inherit system;
});
mkShell {
buildInputs = with pkgs; [
binutils.bintools
cmake
git
libxkbcommon
nix
pkg-config
scons
] ++ lib.optionals (system == builtins.currentSystem) [
# Additional dependencies for cross-compiling for Windows and OSX.
clang
pkgsCross.mingwW64.buildPackages.gcc
pkgsCross.mingw32.buildPackages.gcc
];
}