Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / quesoglc / default.nix
blob440d52d08f81d889c099d00369578c804858663c
1 { lib, stdenv, fetchurl, libGLU, libGL, glew, freetype, fontconfig, fribidi, libX11 }:
2 stdenv.mkDerivation rec {
3   pname = "quesoglc";
4   version = "0.7.2";
5   src = fetchurl {
6     url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
7     sha256 = "0cf9ljdzii5d4i2m23gdmf3kn521ljcldzq69lsdywjid3pg5zjl";
8   };
9   buildInputs = [ libGLU libGL glew freetype fontconfig fribidi libX11 ];
10   # FIXME: Configure fails to use system glew.
11   meta = with lib; {
12     description = "A free implementation of the OpenGL Character Renderer";
13     longDescription = ''
14       QuesoGLC is a free (as in free speech) implementation of the OpenGL
15       Character Renderer (GLC). QuesoGLC is based on the FreeType library,
16       provides Unicode support and is designed to be easily ported to any
17       platform that supports both FreeType and the OpenGL API.
18     '';
19     homepage = "https://quesoglc.sourceforge.net/";
20     license = licenses.lgpl21Plus;
21     maintainers = with maintainers; [ astsmtl ];
22     platforms = platforms.linux;
23   };