mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
mupen64plus: build with gcc49
Works around failure with gcc5, see https://hydra.nixos.org/build/34273319/nixlog/1/raw Not a real fix, but a working build is better than nothing ... I have tested that the program at least runs: it fails to load a few plugins, tho, have no idea to what extent that affects use Couldn't load plugin 'ricevideo.so': /nix/store/...-mupen64plus-1.5/share/mupen64plus/plugins/ricevideo.so: undefined symbol: glCombinerInputNV Couldn't load plugin 'glN64.so': /nix/store/...-mupen64plus-1.5/share/mupen64plus/plugins/glN64.so: undefined symbol: glCombinerInputNV
This commit is contained in:
parent
c34451ad88
commit
9a55b76db1
1 changed files with 3 additions and 1 deletions
|
@ -16113,7 +16113,9 @@ in
|
|||
|
||||
mongoc = callPackage ../development/libraries/mongoc { };
|
||||
|
||||
mupen64plus = callPackage ../misc/emulators/mupen64plus { };
|
||||
mupen64plus = callPackage ../misc/emulators/mupen64plus {
|
||||
stdenv = overrideCC stdenv gcc49;
|
||||
};
|
||||
|
||||
inherit (callPackages ../tools/package-management/nix {
|
||||
storeDir = config.nix.storeDir or "/nix/store";
|
||||
|
|
Loading…
Reference in a new issue