1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/freeglut/default.nix
Bjørn Forsman 38880d19cb freeglut: 2.8.1 -> 3.0.0
* Upstream switched to cmake => remove autoreconfHook
* Makefile.am is gone => remove darwin specific patch (untested)

The new version has a pkg-config file. Yay!

Tested locally with `nox-review wip`; no regressions found.
2015-08-18 18:45:14 +02:00

30 lines
1 KiB
Nix

{ stdenv, fetchurl, libXi, libXrandr, libXxf86vm, mesa, x11, cmake }:
let version = "3.0.0";
in stdenv.mkDerivation {
name = "freeglut-${version}";
src = fetchurl {
url = "mirror://sourceforge/freeglut/freeglut-${version}.tar.gz";
sha256 = "18knkyczzwbmyg8hr4zh8a1i5ga01np2jzd1rwmsh7mh2n2vwhra";
};
buildInputs = [ libXi libXrandr libXxf86vm mesa x11 cmake ];
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 ];
};
}