1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Remove tuxracer

"tuxracer = ..." string was commented for 3 years.

svn path=/nixpkgs/trunk/; revision=33206
This commit is contained in:
Yury G. Kudryashov 2012-03-17 17:20:34 +00:00
parent 776bedbb5f
commit f94501bfa2
2 changed files with 0 additions and 36 deletions

View file

@ -1,31 +0,0 @@
a :
let
fetchurl = a.fetchurl;
version = a.lib.attrByPath ["version"] "0.61" a;
buildInputs = with a; [
mesa libX11 xproto tcl freeglut
];
in
rec {
src = fetchurl {
url = "http://downloads.sourceforge.net/tuxracer/tuxracer-${version}.tar.gz";
sha256 = "1zqyz4ig0kax5q30vcgbavcjw36wsyp9yjsd2dbfb3srh28d04d3";
};
inherit buildInputs;
configureFlags = [];
/* doConfigure should be removed if not needed */
phaseNames = ["preConfigure" "doConfigure" "doMakeInstall"];
preConfigure = a.fullDepEntry (''
sed -e '/TCL_LIB_LIST=/atcl8.4' -i configure
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -DGLX_GLXEXT_LEGACY=1"
'') ["minInit" "doUnpack"];
name = "tuxracer-" + version;
meta = {
description = "TuxRacer - Tux lies on his belly and accelerates down ice slopes..";
};
}

View file

@ -5953,11 +5953,6 @@ let
tunctl = callPackage ../os-specific/linux/tunctl { };
/*tuxracer = builderDefsPackage (import ../games/tuxracer) {
inherit mesa tcl freeglut;
inherit (xlibs) libX11 xproto;
};*/
ubootChooser = name : if (name == "upstream") then ubootUpstream
else if (name == "sheevaplug") then ubootSheevaplug
else if (name == "guruplug") then ubootGuruplug