2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, cmake
|
2021-07-08 14:15:53 +02:00
|
|
|
, libGL, libGLU, libXv, libXtst, libXi, libjpeg_turbo, fltk
|
2020-11-26 11:32:16 +01:00
|
|
|
, xorg
|
|
|
|
, opencl-headers, opencl-clhpp, ocl-icd
|
|
|
|
}:
|
2015-12-04 22:33:02 +01:00
|
|
|
|
2016-03-03 13:55:55 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "virtualgl-lib";
|
2020-11-26 11:32:16 +01:00
|
|
|
version = "2.6.5";
|
2015-12-04 22:33:02 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/virtualgl/VirtualGL-${version}.tar.gz";
|
2020-11-26 11:32:16 +01:00
|
|
|
sha256 = "1giin3jmcs6y616bb44bpz30frsmj9f8pz2vg7jvb9vcfc9456rr";
|
2015-12-04 22:33:02 +01:00
|
|
|
};
|
|
|
|
|
2016-04-24 19:24:01 +02:00
|
|
|
cmakeFlags = [ "-DVGL_SYSTEMFLTK=1" "-DTJPEG_LIBRARY=${libjpeg_turbo.out}/lib/libturbojpeg.so" ];
|
2015-12-04 22:33:02 +01:00
|
|
|
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2020-11-26 11:32:16 +01:00
|
|
|
buildInputs = [ libjpeg_turbo libGL libGLU fltk
|
2021-07-08 14:15:53 +02:00
|
|
|
libXv libXtst libXi xorg.xcbutilkeysyms
|
2020-11-26 11:32:16 +01:00
|
|
|
opencl-headers opencl-clhpp ocl-icd
|
|
|
|
];
|
|
|
|
|
|
|
|
fixupPhase = ''
|
|
|
|
substituteInPlace $out/bin/vglrun \
|
|
|
|
--replace "LD_PRELOAD=libvglfaker" "LD_PRELOAD=$out/lib/libvglfaker" \
|
|
|
|
--replace "LD_PRELOAD=libdlfaker" "LD_PRELOAD=$out/lib/libdlfaker" \
|
|
|
|
--replace "LD_PRELOAD=libgefaker" "LD_PRELOAD=$out/lib/libgefaker"
|
|
|
|
'';
|
2015-12-04 22:33:02 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.virtualgl.org/";
|
2015-12-04 22:33:02 +01:00
|
|
|
description = "X11 GL rendering in a remote computer with full 3D hw acceleration";
|
2018-09-12 21:54:53 +02:00
|
|
|
license = licenses.wxWindows;
|
2015-12-04 22:33:02 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|