571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
25 lines
1.0 KiB
Nix
25 lines
1.0 KiB
Nix
{ 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 = "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;
|
|
};
|
|
}
|