Make rigsofrods build the latest code.
I add angelscript 2.22 too, as it makes RoR happy.
This commit is contained in:
@@ -1,15 +1,17 @@
|
||||
{ fetchsvn, fetchurl, stdenv, wxGTK29, freeimage, cmake, zziplib, mesa, boost,
|
||||
{ fetchurl, fetchFromGitHub, stdenv, wxGTK30, freeimage, cmake, zziplib, mesa, boost,
|
||||
pkgconfig, libuuid, openal, ogre, ois, curl, gtk, pixman, mygui, unzip,
|
||||
angelscript, caelum, ogrepaged, mysocketw, libxcb
|
||||
angelscript, ogrepaged, mysocketw, libxcb
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.39.4";
|
||||
version = "git-20160412";
|
||||
name = "rigsofrods-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/rigsofrods/rigsofrods-source-0.39.4.tar.bz2;
|
||||
sha256 = "1kpjkski0yllwzdki0rjpqvifjs0fwpgs513y4dv4s9wfwan1qcx";
|
||||
src = fetchFromGitHub {
|
||||
owner = "RigsOfRods";
|
||||
repo = "rigs-of-rods";
|
||||
rev = "1ebd359dbd467b4c3171dd6d054e7d8ec39f78ba";
|
||||
sha256 = "0h71nrgq5r5cnh20c7wl8jzyaf50dj1b5jdrwihnklpsfyfvjlw4";
|
||||
};
|
||||
|
||||
contentPackSrc = fetchurl {
|
||||
@@ -19,21 +21,21 @@ stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
cmakeFlags = [
|
||||
"-DROR_USE_CURL=TRUE"
|
||||
"-DROR_USE_MYGUI=TRUE"
|
||||
"-DROR_USE_OPNEAL=TRUE"
|
||||
"-DROR_USE_CAELUM=TRUE"
|
||||
"-DROR_USE_PAGED=TRUE"
|
||||
"-DROR_USE_ANGELSCRIPT=TRUE"
|
||||
"-DROR_USE_SOCKETW=TRUE"
|
||||
"-DCMAKE_BUILD_TYPE=Release"
|
||||
];
|
||||
#cmakeFlags = [
|
||||
# "-DROR_USE_CURL=TRUE"
|
||||
# "-DROR_USE_MYGUI=TRUE"
|
||||
# "-DROR_USE_OPNEAL=TRUE"
|
||||
# "-DROR_USE_CAELUM=TRUE"
|
||||
# "-DROR_USE_PAGED=TRUE"
|
||||
# "-DROR_USE_ANGELSCRIPT=TRUE"
|
||||
# "-DROR_USE_SOCKETW=TRUE"
|
||||
# "-DCMAKE_BUILD_TYPE=Release"
|
||||
#];
|
||||
|
||||
installPhase = ''
|
||||
sed -e "s@/usr/local/lib/OGRE@${ogre}/lib/OGRE@" -i ../tools/linux/binaries/plugins.cfg
|
||||
mkdir -p $out/share/rigsofrods
|
||||
cp -r ../bin/* $out/share/rigsofrods
|
||||
cp -r bin/* $out/share/rigsofrods
|
||||
cp ../tools/linux/binaries/plugins.cfg $out/share/rigsofrods
|
||||
mkdir -p $out/bin
|
||||
ln -s $out/share/rigsofrods/{RoR,rorconfig} $out/bin
|
||||
@@ -43,11 +45,11 @@ stdenv.mkDerivation rec {
|
||||
unzip "${contentPackSrc}"
|
||||
'';
|
||||
|
||||
patches = [ ./doubleslash.patch ./paths.patch ];
|
||||
#patches = [ ./paths.patch ];
|
||||
|
||||
buildInputs = [ wxGTK29 freeimage cmake zziplib mesa boost pkgconfig
|
||||
buildInputs = [ wxGTK30 freeimage cmake zziplib mesa boost pkgconfig
|
||||
libuuid openal ogre ois curl gtk mygui unzip angelscript
|
||||
caelum ogrepaged mysocketw libxcb ];
|
||||
ogrepaged mysocketw libxcb ];
|
||||
|
||||
meta = {
|
||||
description = "3D simulator game where you can drive, fly and sail various vehicles";
|
||||
|
||||
Reference in New Issue
Block a user