lol
at 24.05-pre 24 lines 1.0 kB view raw
1{ lib, stdenv, fetchurl, libGLU, libGL, glew, freetype, fontconfig, fribidi, libX11 }: 2stdenv.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 }; 24}