2019-02-26 11:45:54 +00:00
|
|
|
{ fetchurl, stdenv, runtimeShell
|
|
|
|
, SDL2, freealut, SDL2_image, openal, physfs, zlib, libGLU_combined, glew }:
|
2011-03-30 19:45:11 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-04 23:08:17 +00:00
|
|
|
name = "trigger-rally-0.6.6";
|
2011-03-30 19:45:11 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-01 10:16:02 +01:00
|
|
|
url = "mirror://sourceforge/trigger-rally/${name}.tar.gz";
|
2019-03-04 23:08:17 +00:00
|
|
|
sha256 = "08qa2f2s8zyn42ff6jb1gsi64d916020ixkzvl16kbb88rabqra8";
|
2011-03-30 19:45:11 +01:00
|
|
|
};
|
|
|
|
|
2018-02-24 13:12:44 +00:00
|
|
|
buildInputs = [ SDL2 freealut SDL2_image openal physfs zlib libGLU_combined glew ];
|
2011-03-30 19:45:11 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
2016-04-01 10:16:02 +01:00
|
|
|
sed s,/usr/local,$out, -i bin/*defs
|
2011-03-30 19:45:11 +01:00
|
|
|
|
2016-04-01 10:16:02 +01:00
|
|
|
cd src
|
2017-02-16 21:25:23 +00:00
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${SDL2.dev}/include/SDL2"
|
2016-04-01 10:16:02 +01:00
|
|
|
export makeFlags="$makeFlags prefix=$out"
|
2011-03-30 19:45:11 +01:00
|
|
|
'';
|
|
|
|
|
2016-04-01 10:16:02 +01:00
|
|
|
enableParallelBuilding = true;
|
2011-03-30 19:45:11 +01:00
|
|
|
|
2016-04-01 10:16:02 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cat <<EOF > $out/bin/trigger-rally
|
2019-02-26 11:45:54 +00:00
|
|
|
#!${runtimeShell}
|
2016-04-01 10:16:02 +01:00
|
|
|
exec $out/games/trigger-rally "$@"
|
|
|
|
EOF
|
|
|
|
chmod +x $out/bin/trigger-rally
|
2011-03-30 19:45:11 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Rally";
|
|
|
|
homepage = http://trigger-rally.sourceforge.net/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2011-03-30 19:45:11 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|