toxic: 0.15.1 -> 0.16.0
[NixPkgs.git] / pkgs / by-name / qu / quesoglc / package.nix
blobff38dc30757a0059701aa67bf4629931e64f2695
2   lib,
3   stdenv,
4   fetchurl,
5   libGLU,
6   libGL,
7   glew,
8   freetype,
9   fontconfig,
10   fribidi,
11   libX11,
13 stdenv.mkDerivation rec {
14   pname = "quesoglc";
15   version = "0.7.2";
16   src = fetchurl {
17     url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
18     sha256 = "0cf9ljdzii5d4i2m23gdmf3kn521ljcldzq69lsdywjid3pg5zjl";
19   };
20   buildInputs = [
21     libGLU
22     libGL
23     glew
24     freetype
25     fontconfig
26     fribidi
27     libX11
28   ];
29   # FIXME: Configure fails to use system glew.
30   meta = with lib; {
31     description = "Free implementation of the OpenGL Character Renderer";
32     longDescription = ''
33       QuesoGLC is a free (as in free speech) implementation of the OpenGL
34       Character Renderer (GLC). QuesoGLC is based on the FreeType library,
35       provides Unicode support and is designed to be easily ported to any
36       platform that supports both FreeType and the OpenGL API.
37     '';
38     homepage = "https://quesoglc.sourceforge.net/";
39     license = licenses.lgpl21Plus;
40     maintainers = with maintainers; [ astsmtl ];
41     platforms = platforms.linux;
42   };