nixpkgs/pkgs/games/stuntrally/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

87 lines
1.6 KiB
Nix
Raw Permalink Normal View History

2021-09-19 16:47:31 +02:00
{ lib
, fetchFromGitHub
, stdenv
, cmake
, boost
2023-07-31 10:08:12 +02:00
, ogre_13
2021-09-19 16:47:31 +02:00
, 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
}:
2023-01-16 22:34:10 +01:00
let
2023-07-31 10:08:12 +02:00
stuntrally_ogre = ogre_13.overrideAttrs (old: {
2023-01-16 22:34:10 +01:00
cmakeFlags = old.cmakeFlags ++ [
"-DOGRE_NODELESS_POSITIONING=ON"
"-DOGRE_RESOURCEMANAGER_STRICT=0"
];
});
stuntrally_mygui = mygui.override {
withOgre = true;
2023-07-31 10:08:12 +02:00
ogre = stuntrally_ogre;
2023-01-16 22:34:10 +01:00
};
in
stdenv.mkDerivation rec {
2023-01-16 22:34:10 +01:00
pname = "stuntrally";
version = "2.7";
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=";
};
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=";
};
2024-01-14 20:13:54 +01:00
postPatch = ''
substituteInPlace config/*-default.cfg \
--replace "screenshot_png = off" "screenshot_png = on"
substituteInPlace source/*/BaseApp_Create.cpp \
--replace "Codec_FreeImage" "Codec_STBI"
'';
preConfigure = ''
2023-01-16 22:34:10 +01:00
rmdir data/tracks
ln -s ${tracks}/ data/tracks
'';
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
];
meta = with lib; {
description = "Stunt Rally game with Track Editor, based on VDrift and OGRE";
homepage = "http://stuntrally.tuxfamily.org/";
2014-11-14 18:18:44 +01:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
};
}