1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00
nixpkgs/pkgs/games/extremetuxracer/default.nix
Emily fbda1dbfd6 treewide: replace freeglut with libglut
Allow the macOS GLUT framework to be used automatically in many
cases. Packages that specifically search for freeglut or require its
additional APIs should still explicitly depend on it.

Deliberately skip the Haskell package set, which is mostly
automatically generated, and mupdf, which has its own fork of freeglut.
2024-06-22 18:06:51 +01:00

42 lines
1.1 KiB
Nix

{ lib, stdenv, fetchurl, libGLU, libGL, libX11, xorgproto, tcl, libglut, freetype
, sfml, libXi
, libXmu, libXext, libXt, libSM, libICE
, libpng, pkg-config, gettext, intltool
}:
stdenv.mkDerivation rec {
version = "0.8.4";
pname = "extremetuxracer";
src = fetchurl {
url = "mirror://sourceforge/extremetuxracer/etr-${version}.tar.xz";
sha256 = "sha256-+jKFzAx1Wlr/Up8/LOo1FkgRFMa0uOHsB2n+7/BHc+U=";
};
nativeBuildInputs = [ pkg-config intltool ];
buildInputs = [
libGLU libGL libX11 xorgproto tcl libglut freetype
sfml libXi
libXmu libXext libXt libSM libICE
libpng gettext
];
configureFlags = [ "--with-tcl=${tcl}/lib" ];
preConfigure = ''
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE"
'';
meta = {
description = "High speed arctic racing game based on Tux Racer";
longDescription = ''
ExtremeTuxRacer - Tux lies on his belly and accelerates down ice slopes.
'';
license = lib.licenses.gpl2Plus;
homepage = "https://sourceforge.net/projects/extremetuxracer/";
maintainers = with lib.maintainers; [ ];
mainProgram = "etr";
platforms = with lib.platforms; linux;
};
}