nixpkgs/pkgs/games/quake3/wrapper/default.nix

13 lines
245 B
Nix
Raw Normal View History

{stdenv, fetchurl, game, paks, mesa, name, description}:
stdenv.mkDerivation {
builder = ./builder.sh;
inherit game paks mesa name;
mesaSwitch = ../../../build-support/opengl/mesa-switch.sh;
meta = {
inherit description;
};
}