2018-02-24 13:12:44 +00:00
|
|
|
{ stdenv, fetchurl, libGLU_combined, libX11, xproto, tcl, freeglut, freetype
|
2017-12-05 16:09:10 +00:00
|
|
|
, sfml, libXi, inputproto
|
2014-08-29 12:09:05 +01:00
|
|
|
, libXmu, libXext, xextproto, libXt, libSM, libICE
|
|
|
|
, libpng, pkgconfig, gettext, intltool
|
|
|
|
}:
|
2009-02-21 18:58:56 +00:00
|
|
|
|
2014-08-29 12:09:05 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-05-01 01:24:48 +01:00
|
|
|
version = "0.7.5";
|
2014-08-29 12:09:05 +01:00
|
|
|
name = "extremetuxracer-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/extremetuxracer/etr-${version}.tar.xz";
|
2018-05-01 01:24:48 +01:00
|
|
|
sha256 = "1ly63316c07i0gyqqmyzsyvygsvygn0fpk3bnbg25fi6li99rlsg";
|
2014-08-29 12:09:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-02-24 13:12:44 +00:00
|
|
|
libGLU_combined libX11 xproto tcl freeglut freetype
|
2017-12-05 16:09:10 +00:00
|
|
|
sfml libXi inputproto
|
2009-02-21 18:58:56 +00:00
|
|
|
libXmu libXext xextproto libXt libSM libICE
|
|
|
|
libpng pkgconfig gettext intltool
|
|
|
|
];
|
|
|
|
|
2014-08-29 12:09:05 +01:00
|
|
|
configureFlags = [ "--with-tcl=${tcl}/lib" ];
|
2009-02-21 18:58:56 +00:00
|
|
|
|
2014-08-29 12:09:05 +01:00
|
|
|
preConfigure = ''
|
2017-12-05 16:09:10 +00:00
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE"
|
2014-08-29 12:09:05 +01:00
|
|
|
'';
|
2009-02-21 18:58:56 +00:00
|
|
|
|
|
|
|
meta = {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "High speed arctic racing game based on Tux Racer";
|
|
|
|
longDescription = ''
|
|
|
|
ExtremeTuxRacer - Tux lies on his belly and accelerates down ice slopes.
|
|
|
|
'';
|
2014-08-29 12:09:05 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://sourceforge.net/projects/extremetuxracer/;
|
2014-08-29 12:09:05 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-02-21 18:58:56 +00:00
|
|
|
};
|
|
|
|
}
|