openmw-tes3mp: fix build

authored by gnidorah and committed by Frederik Rietdijk 2414e8d5 500a8ffd

+10 -4
+2 -2
pkgs/games/openmw/default.nix
··· 1 - { stdenv, mkDerivation, fetchFromGitHub, qtbase, openscenegraph, mygui, bullet, ffmpeg 2 , boost, cmake, SDL2, unshield, openal, libXt, pkgconfig }: 3 4 let ··· 10 sha256 = "0admnllxic6dcpic0h100927yw766ab55dix002vvdx36i6994jb"; 11 }; 12 }); 13 - in mkDerivation rec { 14 version = "0.45.0"; 15 pname = "openmw"; 16
··· 1 + { stdenv, mkDerivationWith, fetchFromGitHub, qtbase, openscenegraph, mygui, bullet, ffmpeg 2 , boost, cmake, SDL2, unshield, openal, libXt, pkgconfig }: 3 4 let ··· 10 sha256 = "0admnllxic6dcpic0h100927yw766ab55dix002vvdx36i6994jb"; 11 }; 12 }); 13 + in mkDerivationWith stdenv.mkDerivation rec { 14 version = "0.45.0"; 15 pname = "openmw"; 16
+1 -1
pkgs/games/openmw/tes3mp.nix
··· 71 description = "Multiplayer for TES3:Morrowind based on OpenMW"; 72 homepage = https://tes3mp.com/; 73 license = licenses.gpl3; 74 - platforms = platforms.linux; 75 maintainers = with maintainers; [ gnidorah ]; 76 }; 77 })
··· 71 description = "Multiplayer for TES3:Morrowind based on OpenMW"; 72 homepage = https://tes3mp.com/; 73 license = licenses.gpl3; 74 + platforms = [ "x86_64-linux" "i686-linux" ]; 75 maintainers = with maintainers; [ gnidorah ]; 76 }; 77 })
+7 -1
pkgs/top-level/all-packages.nix
··· 23205 23206 openmw = libsForQt5.callPackage ../games/openmw { }; 23207 23208 - openmw-tes3mp = libsForQt5.callPackage ../games/openmw/tes3mp.nix { }; 23209 23210 openraPackages = import ../games/openra pkgs; 23211
··· 23205 23206 openmw = libsForQt5.callPackage ../games/openmw { }; 23207 23208 + openmw-tes3mp = libsForQt5.callPackage ../games/openmw/tes3mp.nix { 23209 + openmw = openmw.override { 23210 + stdenv = gcc8Stdenv; 23211 + openscenegraph = openscenegraph.override { stdenv = gcc8Stdenv; }; 23212 + mygui = mygui.override { stdenv = gcc8Stdenv; }; 23213 + }; 23214 + }; 23215 23216 openraPackages = import ../games/openra pkgs; 23217