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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libICE, libXext, libXi, libXrandr, libXxf86vm, libGL, libGLU, cmake
, testers
}:
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";
src = fetchurl {
url = "mirror://sourceforge/freeglut/freeglut-${finalAttrs.version}.tar.gz";
2022-07-27 05:46:28 +00:00
sha256 = "sha256-xZRKCC3wu6lrV1bd2x910M1yzie1OVxsHd6Fwv8pelA=";
};
2016-11-05 19:13:04 +00:00
outputs = [ "out" "dev" ];
nativeBuildInputs = [ cmake ];
buildInputs = [ libICE libXext libXi libXrandr libXxf86vm libGL libGLU ];
2015-08-17 17:18:39 +00:00
cmakeFlags = lib.optionals stdenv.isDarwin [
"-DOPENGL_INCLUDE_DIR=${libGL}/include"
"-DOPENGL_gl_LIBRARY:FILEPATH=${libGL}/lib/libGL.dylib"
"-DOPENGL_glu_LIBRARY:FILEPATH=${libGLU}/lib/libGLU.dylib"
"-DFREEGLUT_BUILD_DEMOS:BOOL=OFF"
"-DFREEGLUT_BUILD_STATIC:BOOL=OFF"
];
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
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.
'';
homepage = "https://freeglut.sourceforge.net/";
2015-08-17 17:18:39 +00:00
license = licenses.mit;
pkgConfigModules = [ "glut" ];
2015-08-17 17:18:39 +00:00
platforms = platforms.all;
maintainers = [ maintainers.bjornfor ];
};
})