Skip to content

Commit

Permalink
copy baserom rather than symlinking
Browse files Browse the repository at this point in the history
Breaks Star Rod on Windows as it cannot read symlinks

Signed-off-by: Alex Bates <[email protected]>
  • Loading branch information
bates64 authored Feb 10, 2025
1 parent 5f41ae5 commit d907fb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
star-rod.packages.${system}.default
] ++ (if pkgs.stdenv.isLinux then [ pkgs.flips ] else []); # https://github.com/NixOS/nixpkgs/issues/373508
shellHook = ''
rm -f ./ver/us/baserom.z64 && ln -s ${baseRom} ./ver/us/baserom.z64
rm -f ./ver/us/baserom.z64 && cp ${baseRom} ./ver/us/baserom.z64
export PAPERMARIO_LD="${binutils2_39}/bin/mips-linux-gnu-ld"
# Install python packages (TODO: use derivations)
Expand Down

0 comments on commit d907fb7

Please sign in to comment.