nixpkgs/pkgs/games/stuntrally/default.nix

48 lines
1.3 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, cmake, boost, ogre, mygui, ois, SDL2, libvorbis, pkgconfig
, makeWrapper, enet, libXcursor, bullet, openal }:
stdenv.mkDerivation rec {
2014-11-14 17:18:44 +00:00
name = "stunt-rally-${version}";
2016-04-11 15:18:24 +00:00
version = "2.6";
src = fetchurl {
url = "https://github.com/stuntrally/stuntrally/archive/${version}.tar.gz";
sha256 = "1jmsxd2isq9q5paz43c3xw11vr5md1ym8h34b768vxr6gp90khwc";
};
tracks = fetchurl {
url = "https://github.com/stuntrally/tracks/archive/${version}.tar.gz";
sha256 = "0yv88l9s03kp1xkkwnigh0jj593vi3r7vgyg0jn7i8d22q2p1kjb";
};
# include/OGRE/OgreException.h:265:126: error: invalid conversion from
# 'int' to 'Ogre::Exception::ExceptionCodes' [-fpermissive]
NIX_CFLAGS_COMPILE="-fpermissive";
preConfigure = ''
pushd data
tar xf ${tracks}
mv tracks-2.6 tracks
popd
'';
2017-09-05 12:47:21 +00:00
patches = [
./gcc6.patch
];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake boost ogre mygui ois SDL2 libvorbis
makeWrapper enet libXcursor bullet openal
];
enableParallelBuilding = true;
2014-11-14 17:18:44 +00:00
meta = with stdenv.lib; {
description = "Stunt Rally game with Track Editor, based on VDrift and OGRE";
homepage = http://stuntrally.tuxfamily.org/;
2014-11-14 17:18:44 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
};
}