nixpkgs/pkgs/games/extremetuxracer/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, libGLU_combined, libX11, xorgproto, tcl, freeglut, freetype
, sfml, libXi
, libXmu, libXext, libXt, libSM, libICE
2014-08-29 11:09:05 +00:00
, libpng, pkgconfig, gettext, intltool
}:
2014-08-29 11:09:05 +00:00
stdenv.mkDerivation rec {
version = "0.7.5";
pname = "extremetuxracer";
2014-08-29 11:09:05 +00:00
src = fetchurl {
url = "mirror://sourceforge/extremetuxracer/etr-${version}.tar.xz";
sha256 = "1ly63316c07i0gyqqmyzsyvygsvygn0fpk3bnbg25fi6li99rlsg";
2014-08-29 11:09:05 +00:00
};
buildInputs = [
libGLU_combined libX11 xorgproto tcl freeglut freetype
sfml libXi
libXmu libXext libXt libSM libICE
libpng pkgconfig gettext intltool
];
2014-08-29 11:09:05 +00:00
configureFlags = [ "--with-tcl=${tcl}/lib" ];
2014-08-29 11:09:05 +00:00
preConfigure = ''
2017-12-05 16:09:10 +00:00
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE"
2014-08-29 11:09:05 +00:00
'';
meta = {
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 11:09:05 +00:00
license = stdenv.lib.licenses.gpl2Plus;
homepage = https://sourceforge.net/projects/extremetuxracer/;
2014-08-29 11:09:05 +00:00
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
platforms = with stdenv.lib.platforms; linux;
};
}