2010-07-10 10:45:44 +02:00
|
|
|
{stdenv, fetchurl, mesa, libX11, openssl, libXext, libjpeg_turbo}:
|
|
|
|
|
2010-07-13 21:12:42 +02:00
|
|
|
let
|
|
|
|
libDir = if stdenv.is64bit then "lib64" else "lib";
|
|
|
|
in
|
2010-07-10 10:45:44 +02:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "virtualgl-2.1.4";
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://sourceforge/virtualgl/VirtualGL-2.1.4.tar.gz;
|
|
|
|
sha256 = "d455e599620473a07711196615e59c73d08a7f392a9fcf60a6bc05d82809d89d";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./xshm.patch ];
|
|
|
|
|
2010-07-13 21:12:42 +02:00
|
|
|
prePatch = ''
|
|
|
|
sed -i s,LD_PRELOAD=lib,LD_PRELOAD=$out/${libDir}/lib, rr/vglrun
|
|
|
|
'';
|
|
|
|
|
2010-07-10 10:45:44 +02:00
|
|
|
preInstall =''
|
|
|
|
export makeFlags="prefix=$out"
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ mesa libX11 openssl libXext libjpeg_turbo ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.virtualgl.org/;
|
|
|
|
description = "X11 GL rendering in a remote computer with full 3D hw acceleration";
|
|
|
|
license = "free"; # many parts under different free licenses
|
|
|
|
};
|
|
|
|
}
|