2018-02-24 12:59:47 +00:00
|
|
|
{ stdenv, fetchurl, libXi, libXrandr, libXxf86vm, libGL, libGLU, xlibsWrapper, cmake }:
|
2007-04-18 14:47:35 +01:00
|
|
|
|
2015-08-17 17:59:53 +01:00
|
|
|
let version = "3.0.0";
|
2014-08-13 01:40:57 +01:00
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "freeglut-${version}";
|
2010-04-29 15:57:17 +01:00
|
|
|
|
2007-04-18 14:47:35 +01:00
|
|
|
src = fetchurl {
|
2014-08-13 01:40:57 +01:00
|
|
|
url = "mirror://sourceforge/freeglut/freeglut-${version}.tar.gz";
|
2015-08-17 17:59:53 +01:00
|
|
|
sha256 = "18knkyczzwbmyg8hr4zh8a1i5ga01np2jzd1rwmsh7mh2n2vwhra";
|
2007-04-18 14:47:35 +01:00
|
|
|
};
|
|
|
|
|
2016-11-05 19:13:04 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2018-02-24 12:59:47 +00:00
|
|
|
buildInputs = [ libXi libXrandr libXxf86vm libGL libGLU xlibsWrapper cmake ];
|
2015-08-17 18:18:39 +01:00
|
|
|
|
2016-02-15 20:31:24 +00:00
|
|
|
cmakeFlags = stdenv.lib.optionals stdenv.isDarwin [
|
2018-02-24 12:06:44 +00:00
|
|
|
"-DOPENGL_INCLUDE_DIR=${libGL}/include"
|
|
|
|
"-DOPENGL_gl_LIBRARY:FILEPATH=${libGL}/lib/libGL.dylib"
|
2018-02-24 12:59:47 +00:00
|
|
|
"-DOPENGL_glu_LIBRARY:FILEPATH=${libGLU}/lib/libGLU.dylib"
|
2016-02-15 20:31:24 +00:00
|
|
|
"-DFREEGLUT_BUILD_DEMOS:BOOL=OFF"
|
|
|
|
"-DFREEGLUT_BUILD_STATIC:BOOL=OFF"
|
|
|
|
];
|
|
|
|
|
2016-11-05 19:13:04 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-08-17 18:18:39 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Create and manage windows containing OpenGL contexts";
|
|
|
|
longDescription = ''
|
|
|
|
FreeGLUT is an open source alternative to the OpenGL Utility Toolkit
|
|
|
|
(GLUT) library. GLUT (and hence FreeGLUT) allows the user to create and
|
|
|
|
manage windows containing OpenGL contexts on a wide range of platforms
|
|
|
|
and also read the mouse, keyboard and joystick functions. FreeGLUT is
|
|
|
|
intended to be a full replacement for GLUT, and has only a few
|
|
|
|
differences.
|
|
|
|
'';
|
|
|
|
homepage = http://freeglut.sourceforge.net/;
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
2007-04-18 14:47:35 +01:00
|
|
|
}
|