Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

75 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchurl,
libGLU,
libGL,
libX11,
xorgproto,
tcl,
libglut,
freetype,
sfml_2,
libXi,
libXmu,
libXext,
libXt,
libSM,
libICE,
libpng,
pkg-config,
gettext,
intltool,
}:
stdenv.mkDerivation (finalAttrs: {
version = "0.8.4";
pname = "extremetuxracer";
src = fetchurl {
url = "mirror://sourceforge/extremetuxracer/etr-${finalAttrs.version}.tar.xz";
hash = "sha256-+jKFzAx1Wlr/Up8/LOo1FkgRFMa0uOHsB2n+7/BHc+U=";
};
nativeBuildInputs = [
pkg-config
intltool
];
buildInputs = [
libGLU
libGL
libX11
xorgproto
tcl
libglut
freetype
sfml_2
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 = [ ];
mainProgram = "etr";
platforms = with lib.platforms; linux;
};
})