2021-09-19 16:47:31 +02:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, stdenv
|
|
|
|
, cmake
|
|
|
|
, boost
|
|
|
|
, ogre
|
|
|
|
, mygui
|
|
|
|
, ois
|
|
|
|
, SDL2
|
|
|
|
, libvorbis
|
|
|
|
, pkg-config
|
|
|
|
, makeWrapper
|
|
|
|
, enet
|
|
|
|
, libXcursor
|
|
|
|
, bullet
|
|
|
|
, openal
|
2023-01-16 22:34:10 +01:00
|
|
|
, tinyxml
|
|
|
|
, tinyxml-2
|
2021-09-19 16:47:31 +02:00
|
|
|
}:
|
2012-02-10 22:53:59 +01:00
|
|
|
|
2023-01-16 22:34:10 +01:00
|
|
|
let
|
|
|
|
stuntrally_ogre = ogre.overrideAttrs (old: {
|
|
|
|
cmakeFlags = old.cmakeFlags ++ [
|
|
|
|
"-DOGRE_NODELESS_POSITIONING=ON"
|
|
|
|
"-DOGRE_RESOURCEMANAGER_STRICT=0"
|
|
|
|
];
|
|
|
|
});
|
|
|
|
stuntrally_mygui = mygui.override {
|
|
|
|
withOgre = true;
|
|
|
|
inherit ogre;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
2012-02-10 21:24:13 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2023-01-16 22:34:10 +01:00
|
|
|
pname = "stuntrally";
|
|
|
|
version = "2.7";
|
2012-02-10 21:24:13 +01:00
|
|
|
|
2021-09-19 16:47:31 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "stuntrally";
|
|
|
|
repo = "stuntrally";
|
|
|
|
rev = version;
|
2023-01-16 22:34:10 +01:00
|
|
|
hash = "sha256-0Eh9ilIHSh/Uz8TuPnXxLQfy7KF7qqNXUgBXQUCz9ys=";
|
2012-02-10 21:24:13 +01:00
|
|
|
};
|
2021-09-19 16:47:31 +02:00
|
|
|
tracks = fetchFromGitHub {
|
|
|
|
owner = "stuntrally";
|
|
|
|
repo = "tracks";
|
|
|
|
rev = version;
|
2023-01-16 22:34:10 +01:00
|
|
|
hash = "sha256-fglm1FetFGHM/qGTtpxDb8+k2iAREn5DQR5GPujuLms=";
|
2013-01-10 15:10:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
2023-01-16 22:34:10 +01:00
|
|
|
rmdir data/tracks
|
|
|
|
ln -s ${tracks}/ data/tracks
|
2013-01-10 15:10:27 +01:00
|
|
|
'';
|
|
|
|
|
2022-08-15 05:40:21 +02:00
|
|
|
nativeBuildInputs = [ cmake pkg-config makeWrapper ];
|
2021-09-19 16:47:31 +02:00
|
|
|
buildInputs = [
|
|
|
|
boost
|
2023-01-16 22:34:10 +01:00
|
|
|
stuntrally_ogre
|
|
|
|
stuntrally_mygui
|
2021-09-19 16:47:31 +02:00
|
|
|
ois
|
|
|
|
SDL2
|
|
|
|
libvorbis
|
|
|
|
enet
|
|
|
|
libXcursor
|
|
|
|
bullet
|
|
|
|
openal
|
2023-01-16 22:34:10 +01:00
|
|
|
tinyxml
|
|
|
|
tinyxml-2
|
2013-01-10 15:10:27 +01:00
|
|
|
];
|
2012-02-13 14:41:57 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2012-02-10 21:24:13 +01:00
|
|
|
description = "Stunt Rally game with Track Editor, based on VDrift and OGRE";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://stuntrally.tuxfamily.org/";
|
2014-11-14 18:18:44 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2015-03-14 21:42:07 +01:00
|
|
|
platforms = platforms.linux;
|
2012-02-10 21:24:13 +01:00
|
|
|
};
|
|
|
|
}
|