lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at release-16.03-start 29 lines 1.1 kB view raw
1{ stdenv, fetchurl, libXi, libXrandr, libXxf86vm, mesa, xlibsWrapper, cmake }: 2 3let version = "3.0.0"; 4in stdenv.mkDerivation { 5 name = "freeglut-${version}"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/freeglut/freeglut-${version}.tar.gz"; 9 sha256 = "18knkyczzwbmyg8hr4zh8a1i5ga01np2jzd1rwmsh7mh2n2vwhra"; 10 }; 11 12 buildInputs = [ libXi libXrandr libXxf86vm mesa xlibsWrapper cmake ]; 13 14 meta = with stdenv.lib; { 15 description = "Create and manage windows containing OpenGL contexts"; 16 longDescription = '' 17 FreeGLUT is an open source alternative to the OpenGL Utility Toolkit 18 (GLUT) library. GLUT (and hence FreeGLUT) allows the user to create and 19 manage windows containing OpenGL contexts on a wide range of platforms 20 and also read the mouse, keyboard and joystick functions. FreeGLUT is 21 intended to be a full replacement for GLUT, and has only a few 22 differences. 23 ''; 24 homepage = http://freeglut.sourceforge.net/; 25 license = licenses.mit; 26 platforms = platforms.all; 27 maintainers = [ maintainers.bjornfor ]; 28 }; 29}