2021-03-15 19:30:39 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2021-04-25 16:46:05 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
|
|
|
, doxygen
|
2024-06-20 04:39:23 +00:00
|
|
|
, libglut
|
2021-03-15 19:30:39 +00:00
|
|
|
, freetype
|
|
|
|
, libGL
|
|
|
|
, libGLU
|
2021-04-25 16:46:05 +00:00
|
|
|
, pkg-config
|
2022-12-12 00:56:24 +00:00
|
|
|
, darwin
|
2021-03-15 19:30:39 +00:00
|
|
|
}:
|
|
|
|
|
2022-12-12 00:56:24 +00:00
|
|
|
let
|
|
|
|
inherit (darwin.apple_sdk.frameworks) OpenGL GLUT;
|
|
|
|
in
|
2021-03-15 19:30:39 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ftgl";
|
2021-04-25 16:46:05 +00:00
|
|
|
version = "2.4.0";
|
2012-01-15 11:44:05 +00:00
|
|
|
|
2021-04-25 16:46:05 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "frankheckenbach";
|
|
|
|
repo = "ftgl";
|
|
|
|
rev = "v${version}";
|
|
|
|
hash = "sha256-6TDNGoMeBLnucmHRgEDIVWcjlJb7N0sTluqBwRMMWn4=";
|
2010-10-20 10:53:45 +00:00
|
|
|
};
|
2012-01-15 11:44:05 +00:00
|
|
|
|
2022-09-16 23:22:18 +00:00
|
|
|
# GL_DYLIB is hardcoded to an impure path
|
|
|
|
# /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
|
|
|
|
# and breaks build on recent macOS versions
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace m4/gl.m4 \
|
|
|
|
--replace ' -dylib_file $GL_DYLIB: $GL_DYLIB' ""
|
|
|
|
'';
|
|
|
|
|
2021-04-25 16:46:05 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
doxygen
|
|
|
|
pkg-config
|
|
|
|
];
|
2021-03-15 19:30:39 +00:00
|
|
|
buildInputs = [
|
|
|
|
freetype
|
|
|
|
] ++ (if stdenv.isDarwin then [
|
|
|
|
OpenGL
|
2021-04-25 16:46:05 +00:00
|
|
|
GLUT
|
2021-03-15 19:30:39 +00:00
|
|
|
] else [
|
|
|
|
libGL
|
|
|
|
libGLU
|
2024-06-20 04:39:23 +00:00
|
|
|
libglut
|
2021-03-15 19:30:39 +00:00
|
|
|
]);
|
2017-11-27 15:29:37 +00:00
|
|
|
|
2021-03-15 19:30:39 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-ft-prefix=${lib.getDev freetype}"
|
|
|
|
];
|
2020-04-02 02:26:48 +00:00
|
|
|
|
2017-11-27 15:29:37 +00:00
|
|
|
enableParallelBuilding = true;
|
2010-10-20 10:53:45 +00:00
|
|
|
|
2021-04-25 16:46:05 +00:00
|
|
|
postInstall = ''
|
|
|
|
install -Dm644 src/FTSize.h -t ${placeholder "out"}/include/FTGL
|
|
|
|
install -Dm644 src/FTFace.h -t ${placeholder "out"}/include/FTGL
|
|
|
|
'';
|
|
|
|
|
2021-03-15 19:30:39 +00:00
|
|
|
meta = with lib; {
|
2021-04-25 16:46:05 +00:00
|
|
|
homepage = "https://github.com/frankheckenbach/ftgl";
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Font rendering library for OpenGL applications";
|
2012-01-15 11:44:11 +00:00
|
|
|
longDescription = ''
|
2021-03-15 19:30:39 +00:00
|
|
|
FTGL is a free cross-platform Open Source C++ library that uses Freetype2
|
|
|
|
to simplify rendering fonts in OpenGL applications. FTGL supports bitmaps,
|
|
|
|
pixmaps, texture maps, outlines, polygon mesh, and extruded polygon
|
|
|
|
rendering modes.
|
2012-01-15 11:44:11 +00:00
|
|
|
'';
|
2021-04-25 16:46:05 +00:00
|
|
|
license = licenses.mit;
|
2021-03-15 19:30:39 +00:00
|
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
|
|
platforms = platforms.unix;
|
2012-01-15 11:44:11 +00:00
|
|
|
};
|
2010-10-20 10:53:45 +00:00
|
|
|
}
|