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

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

77 lines
1.7 KiB
Nix
Raw Normal View History

2021-03-15 19:30:39 +00:00
{ lib
, stdenv
2021-04-25 16:46:05 +00:00
, fetchFromGitHub
, autoreconfHook
, doxygen
, libglut
2021-03-15 19:30:39 +00:00
, freetype
, libGL
, libGLU
2021-04-25 16:46:05 +00:00
, pkg-config
, darwin
2021-03-15 19:30:39 +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";
2021-04-25 16:46:05 +00:00
src = fetchFromGitHub {
owner = "frankheckenbach";
repo = "ftgl";
rev = "v${version}";
hash = "sha256-6TDNGoMeBLnucmHRgEDIVWcjlJb7N0sTluqBwRMMWn4=";
};
# 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
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}"
];
2017-11-27 15:29:37 +00:00
enableParallelBuilding = true;
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";
description = "Font rendering library for OpenGL applications";
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.
'';
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;
};
}