mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Remove unnecessary override
This commit is contained in:
parent
43be15a89c
commit
aa17cbf0a8
2 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchurl, x11, SDL, mesa, openal, gcc }:
|
||||
{ lib, stdenv, fetchurl, x11, SDL, mesa, openal, gcc46 }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ioquake3-1.36";
|
||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation {
|
|||
./exit.patch
|
||||
];
|
||||
|
||||
buildInputs = [x11 SDL mesa openal gcc];
|
||||
buildInputs = [ x11 SDL mesa openal gcc46 ];
|
||||
|
||||
# Fix building on GCC 4.6.
|
||||
NIX_CFLAGS_COMPILE = "-Wno-error";
|
||||
|
|
|
@ -11457,7 +11457,7 @@ let
|
|||
|
||||
quake3demodata = callPackage ../games/quake3/demo { };
|
||||
|
||||
quake3game = callPackage ../games/quake3/game { gcc = gcc46; };
|
||||
quake3game = callPackage ../games/quake3/game { };
|
||||
|
||||
quantumminigolf = callPackage ../games/quantumminigolf {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue