2023-02-11 15:09:01 +00:00
|
|
|
{ lib, stdenv, fetchurl, libICE, libXext, libXi, libXrandr, libXxf86vm, libGL, libGLU, cmake
|
|
|
|
, testers
|
|
|
|
}:
|
2007-04-18 13:47:35 +00:00
|
|
|
|
2023-02-11 15:09:01 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "freeglut";
|
2022-07-27 05:46:28 +00:00
|
|
|
version = "3.2.2";
|
2010-04-29 14:57:17 +00:00
|
|
|
|
2007-04-18 13:47:35 +00:00
|
|
|
src = fetchurl {
|
2023-02-11 15:09:01 +00:00
|
|
|
url = "mirror://sourceforge/freeglut/freeglut-${finalAttrs.version}.tar.gz";
|
2022-07-27 05:46:28 +00:00
|
|
|
sha256 = "sha256-xZRKCC3wu6lrV1bd2x910M1yzie1OVxsHd6Fwv8pelA=";
|
2007-04-18 13:47:35 +00:00
|
|
|
};
|
|
|
|
|
2016-11-05 19:13:04 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2020-12-31 07:48:55 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2022-10-30 15:02:09 +00:00
|
|
|
buildInputs = [ libICE libXext libXi libXrandr libXxf86vm libGL libGLU ];
|
2015-08-17 17:18:39 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
cmakeFlags = 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"
|
|
|
|
];
|
|
|
|
|
2023-02-11 15:09:01 +00:00
|
|
|
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2015-08-17 17:18:39 +00:00
|
|
|
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.
|
|
|
|
'';
|
2023-01-21 21:41:12 +00:00
|
|
|
homepage = "https://freeglut.sourceforge.net/";
|
2015-08-17 17:18:39 +00:00
|
|
|
license = licenses.mit;
|
2023-02-11 15:09:01 +00:00
|
|
|
pkgConfigModules = [ "glut" ];
|
2015-08-17 17:18:39 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
2023-02-11 15:09:01 +00:00
|
|
|
})
|