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

SuperTuxKart: Use GNU Make 3.81.

svn path=/nixpkgs/branches/stdenv-updates/; revision=24725
This commit is contained in:
Ludovic Courtès 2010-11-17 10:43:00 +00:00
parent ad1c12d756
commit d3c50a23f4

View file

@ -6698,7 +6698,12 @@ let
superTux = callPackage ../games/super-tux { };
superTuxKart = callPackage ../games/super-tux-kart { };
superTuxKart = callPackage ../games/super-tux-kart {
/* With GNU Make 3.82, the build process is stuck in the `data'
directory, after displaying "Making all in tracks", and `pstree'
indicates that `make' doesn't launch any new process. */
stdenv = overrideInStdenv stdenv [ gnumake381 ];
};
teeworlds = callPackage ../games/teeworlds { };