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

50 lines
1.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fetchpatch, libXi, libXrandr, libXxf86vm, libGL, libGLU, xlibsWrapper, cmake }:
2021-07-17 17:56:23 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "freeglut";
2021-07-17 17:56:23 +00:00
version = "3.2.1";
src = fetchurl {
2014-08-13 00:40:57 +00:00
url = "mirror://sourceforge/freeglut/freeglut-${version}.tar.gz";
2019-10-02 15:53:08 +00:00
sha256 = "0s6sk49q8ijgbsrrryb7dzqx2fa744jhx1wck5cz5jia2010w06l";
};
patches = [
(fetchpatch {
# upstream build fix against -fno-common compilers like >=gcc-10
url = "https://github.com/dcnieho/FreeGLUT/commit/b9998bbc1e1c329f6bf69c24606a2be7a4973b8c.patch";
sha256 = "0j43vrnm22mz3r3c43szgcnil19cx9vcydzky9gwzqlyacr51swd";
stripLen = 2;
})
];
2016-11-05 19:13:04 +00:00
outputs = [ "out" "dev" ];
nativeBuildInputs = [ cmake ];
buildInputs = [ libXi libXrandr libXxf86vm libGL libGLU xlibsWrapper ];
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"
];
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 = "http://freeglut.sourceforge.net/";
2015-08-17 17:18:39 +00:00
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.bjornfor ];
};
}