forked from mirrors/nixpkgs
28b6fb61e6
This is done for the sake of Yosemite, which does not have gcc, and yet this change is also compatible with Linux.
16 lines
255 B
Nix
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;
|
|
};
|
|
}
|