2014-08-13 01:40:57 +01:00
|
|
|
{ stdenv, lib, fetchurl, libXi, libXrandr, libXxf86vm, mesa, x11, autoreconfHook }:
|
2007-04-18 14:47:35 +01:00
|
|
|
|
2014-08-13 01:40:57 +01:00
|
|
|
let version = "2.8.1";
|
|
|
|
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";
|
2013-06-16 21:25:49 +01:00
|
|
|
sha256 = "16lrxxxd9ps9l69y3zsw6iy0drwjsp6m26d1937xj71alqk6dr6x";
|
2007-04-18 14:47:35 +01:00
|
|
|
};
|
|
|
|
|
2014-08-13 01:40:57 +01:00
|
|
|
buildInputs = [
|
|
|
|
libXi libXrandr libXxf86vm mesa x11
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
autoreconfHook
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace Makefile.am --replace \
|
|
|
|
"SUBDIRS = src include progs doc" \
|
|
|
|
"SUBDIRS = src include doc"
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [ "--enable-warnings" ];
|
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
|
|
|
}
|