this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

bug: fix the flake

+5 -2
+5 -2
flake.nix
··· 67 67 68 68 deploy-to-xp = pkgs.writeShellScriptBin "deploy-to-xp" '' 69 69 echo "rebuilding program" 70 - nix build --rebuild 70 + if ! nix build --rebuild; then 71 + echo "Rebuild failed, attempting normal build..." 72 + nix build 73 + fi 71 74 72 75 XP_DIR="$HOME/Documents/xp-drive" 73 76 mkdir -p "$XP_DIR" ··· 121 124 # Get dynamic paths from nix packages 122 125 GCC_BASE="${pkgs.pkgsCross.mingw32.buildPackages.gcc}/i686-w64-mingw32" 123 126 SYS_INCLUDE="$GCC_BASE/sys-include" 124 - MINGW_MAIN_INCLUDE="${pkgs.pkgsCross.mingw32.windows.mingw_w64}/include" 127 + MINGW_MAIN_INCLUDE="${pkgs.pkgsCross.mingw32.windows.mingw_w64.dev}/include" 125 128 CPP_INCLUDE="${pkgs.lib.getDev pkgs.pkgsCross.mingw32.buildPackages.gcc}/include/c++/10.3.0" 126 129 CPP_TARGET_INCLUDE="$CPP_INCLUDE/i686-w64-mingw32" 127 130