2016-05-08 15:21:46 +01:00
|
|
|
{ fetchurl, stdenv, cmake, boost, ogre, mygui, ois, SDL2, libvorbis, pkgconfig
|
|
|
|
, makeWrapper, enet, libXcursor, bullet, openal }:
|
2012-02-10 21:53:59 +00:00
|
|
|
|
2012-02-10 20:24:13 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "stunt-rally";
|
2019-03-23 13:11:53 +00:00
|
|
|
version = "2.6.1";
|
2012-02-10 20:24:13 +00:00
|
|
|
|
2016-05-08 15:21:46 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/stuntrally/stuntrally/archive/${version}.tar.gz";
|
2019-03-23 13:11:53 +00:00
|
|
|
sha256 = "1zxq3x2g9pzafa2awx9jzqd33z6gnqj231cs07paxzrm89y51w4v";
|
2012-02-10 20:24:13 +00:00
|
|
|
};
|
|
|
|
|
2016-05-08 15:21:46 +01:00
|
|
|
tracks = fetchurl {
|
|
|
|
url = "https://github.com/stuntrally/tracks/archive/${version}.tar.gz";
|
2019-03-23 13:11:53 +00:00
|
|
|
sha256 = "0x6lgpa4c2grl0vrhqrcs7jcysa3mmvpdl1v5xa0dsf6vkvfr0zs";
|
2013-01-10 14:10:27 +00:00
|
|
|
};
|
|
|
|
|
2016-05-08 15:21:46 +01:00
|
|
|
# include/OGRE/OgreException.h:265:126: error: invalid conversion from
|
|
|
|
# 'int' to 'Ogre::Exception::ExceptionCodes' [-fpermissive]
|
|
|
|
NIX_CFLAGS_COMPILE="-fpermissive";
|
|
|
|
|
2013-01-10 14:10:27 +00:00
|
|
|
preConfigure = ''
|
2016-05-08 15:21:46 +01:00
|
|
|
pushd data
|
|
|
|
tar xf ${tracks}
|
2019-03-23 13:11:53 +00:00
|
|
|
mv tracks-${version} tracks
|
2016-05-08 15:21:46 +01:00
|
|
|
popd
|
2013-01-10 14:10:27 +00:00
|
|
|
'';
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ cmake boost ogre mygui ois SDL2 libvorbis
|
2016-05-08 15:21:46 +01:00
|
|
|
makeWrapper enet libXcursor bullet openal
|
2013-01-10 14:10:27 +00:00
|
|
|
];
|
2012-02-13 13:41:57 +00:00
|
|
|
|
2012-02-10 20:24:13 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-11-14 17:18:44 +00:00
|
|
|
meta = with stdenv.lib; {
|
2012-02-10 20:24:13 +00:00
|
|
|
description = "Stunt Rally game with Track Editor, based on VDrift and OGRE";
|
2016-05-08 15:21:46 +01:00
|
|
|
homepage = http://stuntrally.tuxfamily.org/;
|
2014-11-14 17:18:44 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2015-03-14 20:42:07 +00:00
|
|
|
platforms = platforms.linux;
|
2012-02-10 20:24:13 +00:00
|
|
|
};
|
|
|
|
}
|