about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/ftgl/default.nix
blob: 5588e27356f075ddb7df943e3e0190d18824150a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ lib
, stdenv
, fetchurl
, freetype
, libGL
, libGLU
, OpenGL
}:

stdenv.mkDerivation rec {
  pname = "ftgl";
  version = "2.1.3-rc5";

  src = fetchurl {
    url = "mirror://sourceforge/${pname}-${version}.tar.gz";
    hash = "sha256-VFjWISJFSGlXLTn4qoV0X8BdVRgAG876Y71su40mVls=";
  };

  buildInputs = [
    freetype
  ] ++ (if stdenv.isDarwin then [
    OpenGL
  ] else [
    libGL
    libGLU
  ]);

  configureFlags = [
    "--with-ft-prefix=${lib.getDev freetype}"
  ];

  enableParallelBuilding = true;

  meta = with lib; {
    homepage = "https://sourceforge.net/apps/mediawiki/ftgl/";
    description = "Font rendering library for OpenGL applications";
    longDescription = ''
      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.
    '';
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ AndersonTorres ];
    platforms = platforms.unix;
  };
}