nixpkgs/pkgs/games/extremetuxracer/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-15 05:31:39 +01: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 13:09:05 +02:00
}:
2014-08-29 13:09:05 +02:00
stdenv.mkDerivation rec {
2022-07-07 15:48:07 +02:00
version = "0.8.2";
pname = "extremetuxracer";
2014-08-29 13:09:05 +02:00
src = fetchurl {
url = "mirror://sourceforge/extremetuxracer/etr-${version}.tar.xz";
2022-07-07 15:48:07 +02:00
sha256 = "sha256-HIdJZeniSVM78VwI2rxh5gwFuz/VeJF4gBF/+KkQzU4=";
2014-08-29 13:09:05 +02:00
};
nativeBuildInputs = [ pkg-config intltool ];
2014-08-29 13:09:05 +02:00
buildInputs = [
2019-11-22 17:18:27 +01:00
libGLU libGL libX11 xorgproto tcl freeglut freetype
sfml libXi
libXmu libXext libXt libSM libICE
libpng gettext
];
2014-08-29 13:09:05 +02:00
configureFlags = [ "--with-tcl=${tcl}/lib" ];
2014-08-29 13:09:05 +02:00
preConfigure = ''
2017-12-05 17:09:10 +01:00
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE"
2014-08-29 13:09:05 +02: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 05:31:39 +01:00
license = lib.licenses.gpl2Plus;
2020-03-08 09:16:01 +01:00
homepage = "https://sourceforge.net/projects/extremetuxracer/";
2021-01-15 05:31:39 +01:00
maintainers = with lib.maintainers; [ ];
platforms = with lib.platforms; linux;
};
}