3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/games/quake3/wrapper/default.nix
John Wiegley 28b6fb61e6 Change occurrences of gcc to the more general cc
This is done for the sake of Yosemite, which does not have gcc, and yet
this change is also compatible with Linux.
2014-12-26 11:06:21 -06:00

16 lines
255 B
Nix

{stdenv, fetchurl, game, paks, mesa, name, description, makeWrapper}:
stdenv.mkDerivation {
builder = ./builder.sh;
buildInputs = [makeWrapper];
inherit game paks mesa name;
gcc = stdenv.cc.gcc;
meta = {
inherit description;
};
}