python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / quesoglc / default.nix
blob1a4fcca9d9b05e4b98d6a7026f1e21f6faa1853d
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 = "http://quesoglc.sourceforge.net/";
20     license = licenses.lgpl21Plus;
21     maintainers = with maintainers; [ astsmtl ];
22     platforms = platforms.linux;
23   };