about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/quesoglc
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/quesoglc')
-rw-r--r--nixpkgs/pkgs/development/libraries/quesoglc/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/quesoglc/default.nix b/nixpkgs/pkgs/development/libraries/quesoglc/default.nix
new file mode 100644
index 000000000000..440d52d08f81
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/quesoglc/default.nix
@@ -0,0 +1,24 @@
+{ lib, stdenv, fetchurl, libGLU, libGL, glew, freetype, fontconfig, fribidi, libX11 }:
+stdenv.mkDerivation rec {
+  pname = "quesoglc";
+  version = "0.7.2";
+  src = fetchurl {
+    url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
+    sha256 = "0cf9ljdzii5d4i2m23gdmf3kn521ljcldzq69lsdywjid3pg5zjl";
+  };
+  buildInputs = [ libGLU libGL glew freetype fontconfig fribidi libX11 ];
+  # FIXME: Configure fails to use system glew.
+  meta = with lib; {
+    description = "A free implementation of the OpenGL Character Renderer";
+    longDescription = ''
+      QuesoGLC is a free (as in free speech) implementation of the OpenGL
+      Character Renderer (GLC). QuesoGLC is based on the FreeType library,
+      provides Unicode support and is designed to be easily ported to any
+      platform that supports both FreeType and the OpenGL API.
+    '';
+    homepage = "https://quesoglc.sourceforge.net/";
+    license = licenses.lgpl21Plus;
+    maintainers = with maintainers; [ astsmtl ];
+    platforms = platforms.linux;
+  };
+}