Disable rom name override.

The latest nixpkgs does not support overriding the name so I am removing it now for compatibility.
This commit is contained in:
Tom Alexander 2025-01-25 16:22:04 -05:00
parent 53c12a5b1e
commit 78c9dec4c4
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -27,14 +27,13 @@
sm64ex sm64ex
]; ];
nixpkgs.overlays = [ # nixpkgs.overlays = [
(final: prev: { # (final: prev: {
sm4ex = prev.sm64ex.override { # sm4ex = prev.sm64ex.override {
baseRom.name = "SuperMario64.z64"; # baseRom.name = "SuperMario64.z64";
}; # };
}) # })
]; # ];
}) })
] ]
); );