nixpkgs/pkgs/development/libraries/freeglut/default.nix

42 lines
1.3 KiB
Nix
Raw Normal View History

2014-08-13 02:40:57 +02:00
{ stdenv, lib, fetchurl, libXi, libXrandr, libXxf86vm, mesa, x11, autoreconfHook }:
2014-08-13 02:40:57 +02:00
let version = "2.8.1";
in stdenv.mkDerivation {
name = "freeglut-${version}";
src = fetchurl {
2014-08-13 02:40:57 +02:00
url = "mirror://sourceforge/freeglut/freeglut-${version}.tar.gz";
sha256 = "16lrxxxd9ps9l69y3zsw6iy0drwjsp6m26d1937xj71alqk6dr6x";
};
2014-08-13 02:40:57 +02: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 19:18:39 +02: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 ];
};
}