nixpkgs/pkgs/games/extremetuxracer/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-15 04:31:39 +00:00
{ lib, stdenv, fetchurl, libGLU, libGL, libX11, xorgproto, tcl, freeglut, freetype
, sfml, libXi
, libXmu, libXext, libXt, libSM, libICE
, libpng, pkg-config, gettext, intltool
2014-08-29 11:09:05 +00:00
}:
2014-08-29 11:09:05 +00:00
stdenv.mkDerivation rec {
2020-03-08 08:16:01 +00:00
version = "0.8.0";
pname = "extremetuxracer";
2014-08-29 11:09:05 +00:00
src = fetchurl {
url = "mirror://sourceforge/extremetuxracer/etr-${version}.tar.xz";
2020-03-08 08:16:01 +00:00
sha256 = "05ysaxvsgps9fxc421kdifsxmc1sn6n79cjaa0k0i3fs9qqrja2b";
2014-08-29 11:09:05 +00:00
};
buildInputs = [
2019-11-22 16:18:27 +00:00
libGLU libGL libX11 xorgproto tcl freeglut freetype
sfml libXi
libXmu libXext libXt libSM libICE
libpng pkg-config 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.
'';
2021-01-15 04:31:39 +00:00
license = lib.licenses.gpl2Plus;
2020-03-08 08:16:01 +00:00
homepage = "https://sourceforge.net/projects/extremetuxracer/";
2021-01-15 04:31:39 +00:00
maintainers = with lib.maintainers; [ ];
platforms = with lib.platforms; linux;
};
}