6006d61835
svn path=/nixpkgs/trunk/; revision=6705
13 lines
245 B
Nix
13 lines
245 B
Nix
{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;
|
|
};
|
|
}
|