We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bdacfe commit eda37e1Copy full SHA for eda37e1
flake.nix
@@ -36,7 +36,7 @@
36
pcsx-redux = pkgs.callPackage ./pcsx-redux.nix {
37
src = self;
38
platforms = lib.systems.flakeExposed;
39
- gccMips = cross.buildPackages.gccWithoutTargetLibc.cc; # unwrapped
+ gccMips = cross.buildPackages.gccWithoutTargetLibc;
40
};
41
});
42
pcsx-redux.nix
@@ -118,7 +118,10 @@ in stdenv.mkDerivation {
118
nativeBuildInputs = [
119
pkg-config
120
imagemagick
121
- gccMips
+ ] ++ lib.optionals withOpenbios [
122
+ # unwrap them
123
+ gccMips.cc
124
+ gccMips.bintools.bintools
125
];
126
127
buildInputs = [
0 commit comments