mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
c6568adb00
most found with https://github.com/siraben/nix-lint
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, stdenv
|
|
, cmake
|
|
, boost
|
|
, ogre
|
|
, mygui
|
|
, ois
|
|
, SDL2
|
|
, libvorbis
|
|
, pkg-config
|
|
, makeWrapper
|
|
, enet
|
|
, libXcursor
|
|
, bullet
|
|
, openal
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "stunt-rally";
|
|
version = "2.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stuntrally";
|
|
repo = "stuntrally";
|
|
rev = version;
|
|
hash = "sha256-9I6hXsosqx+yYiEOEnPXQJHZkGtSU+JqThorwjemlc0=";
|
|
};
|
|
tracks = fetchFromGitHub {
|
|
owner = "stuntrally";
|
|
repo = "tracks";
|
|
rev = version;
|
|
hash = "sha256-eZJAvkKe3PrXDzxTa5WFBHfltB3jhQh8puzOFDO9lso=";
|
|
};
|
|
|
|
preConfigure = ''
|
|
ln -s ${tracks} data/tracks
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake pkg-config makeWrapper ];
|
|
buildInputs = [
|
|
boost
|
|
ogre
|
|
mygui
|
|
ois
|
|
SDL2
|
|
libvorbis
|
|
enet
|
|
libXcursor
|
|
bullet
|
|
openal
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Stunt Rally game with Track Editor, based on VDrift and OGRE";
|
|
homepage = "http://stuntrally.tuxfamily.org/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ pSub ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|