nixpkgs/pkgs/games/stuntrally/default.nix

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

80 lines
1.4 KiB
Nix
Raw Normal View History

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
2023-01-16 21:34:10 +00:00
, tinyxml
, tinyxml-2
2021-09-19 14:47:31 +00:00
}:
2023-01-16 21:34:10 +00: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
stdenv.mkDerivation rec {
2023-01-16 21:34:10 +00:00
pname = "stuntrally";
version = "2.7";
2021-09-19 14:47:31 +00:00
src = fetchFromGitHub {
owner = "stuntrally";
repo = "stuntrally";
rev = version;
2023-01-16 21:34:10 +00:00
hash = "sha256-0Eh9ilIHSh/Uz8TuPnXxLQfy7KF7qqNXUgBXQUCz9ys=";
};
2021-09-19 14:47:31 +00:00
tracks = fetchFromGitHub {
owner = "stuntrally";
repo = "tracks";
rev = version;
2023-01-16 21:34:10 +00:00
hash = "sha256-fglm1FetFGHM/qGTtpxDb8+k2iAREn5DQR5GPujuLms=";
};
preConfigure = ''
2023-01-16 21:34:10 +00:00
rmdir data/tracks
ln -s ${tracks}/ data/tracks
'';
nativeBuildInputs = [ cmake pkg-config makeWrapper ];
2021-09-19 14:47:31 +00:00
buildInputs = [
boost
2023-01-16 21:34:10 +00:00
stuntrally_ogre
stuntrally_mygui
2021-09-19 14:47:31 +00:00
ois
SDL2
libvorbis
enet
libXcursor
bullet
openal
2023-01-16 21:34:10 +00: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 17:18:44 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
};
}