7219a09001
* rss-glx: fixed the build. * Removed the OpenGL wrapper stuff, it's no longer needed (thanks to the RUNPATH you just need to put the appropriate libGL.so in the LD_LIBRARY_PATH). svn path=/nixpkgs/trunk/; revision=12093
16 lines
256 B
Nix
16 lines
256 B
Nix
{stdenv, fetchurl, game, paks, mesa, name, description, makeWrapper}:
|
|
|
|
stdenv.mkDerivation {
|
|
builder = ./builder.sh;
|
|
|
|
buildInputs = [makeWrapper];
|
|
|
|
inherit game paks mesa name;
|
|
|
|
gcc = stdenv.gcc.gcc;
|
|
|
|
meta = {
|
|
inherit description;
|
|
};
|
|
}
|