2021-09-19 14:47:31 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, stdenv
|
|
|
|
, cmake
|
|
|
|
, boost
|
|
|
|
, ogre
|
|
|
|
, mygui
|
|
|
|
, ois
|
|
|
|
, SDL2
|
|
|
|
, libvorbis
|
|
|
|
, pkg-config
|
|
|
|
, 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 12:41:18 +00:00
|
|
|
pname = "stunt-rally";
|
2022-06-02 21:10:37 +00:00
|
|
|
version = "2.6.2";
|
2012-02-10 20:24:13 +00:00
|
|
|
|
2021-09-19 14:47:31 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "stuntrally";
|
|
|
|
repo = "stuntrally";
|
|
|
|
rev = version;
|
2022-06-02 21:10:37 +00:00
|
|
|
hash = "sha256-9I6hXsosqx+yYiEOEnPXQJHZkGtSU+JqThorwjemlc0=";
|
2012-02-10 20:24:13 +00:00
|
|
|
};
|
2021-09-19 14:47:31 +00:00
|
|
|
tracks = fetchFromGitHub {
|
|
|
|
owner = "stuntrally";
|
|
|
|
repo = "tracks";
|
|
|
|
rev = version;
|
2022-06-02 21:10:37 +00:00
|
|
|
hash = "sha256-eZJAvkKe3PrXDzxTa5WFBHfltB3jhQh8puzOFDO9lso=";
|
2013-01-10 14:10:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
2021-09-19 14:47:31 +00:00
|
|
|
ln -s ${tracks} data/tracks
|
2013-01-10 14:10:27 +00:00
|
|
|
'';
|
|
|
|
|
2022-08-15 03:40:21 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config makeWrapper ];
|
2021-09-19 14:47:31 +00:00
|
|
|
buildInputs = [
|
|
|
|
boost
|
|
|
|
ogre
|
|
|
|
mygui
|
|
|
|
ois
|
|
|
|
SDL2
|
|
|
|
libvorbis
|
|
|
|
enet
|
|
|
|
libXcursor
|
|
|
|
bullet
|
|
|
|
openal
|
2013-01-10 14:10:27 +00:00
|
|
|
];
|
2012-02-13 13:41:57 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2012-02-10 20:24:13 +00:00
|
|
|
description = "Stunt Rally game with Track Editor, based on VDrift and OGRE";
|
2020-04-01 01:11:51 +00: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
|
|
|
};
|
|
|
|
}
|