gl2ps: init at 1.4.0

This commit is contained in:
Tyson Whitehead 2019-07-09 14:32:13 -04:00
parent 663542ad04
commit 28a0dc5a12
No known key found for this signature in database
GPG key ID: B22199763A27997B
3 changed files with 40 additions and 0 deletions

View file

@ -5362,6 +5362,15 @@
github = "twey";
name = "James Twey Kay";
};
twhitehead = {
name = "Tyson Whitehead";
email = "twhitehead@gmail.com";
github = "twhitehead";
keys = [{
longkeyid = "rsa2048/0x594258F0389D2802";
fingerprint = "E631 8869 586F 99B4 F6E6 D785 5942 58F0 389D 2802";
}];
};
typetetris = {
email = "ericwolf42@mail.com";
github = "typetetris";

View file

@ -0,0 +1,29 @@
{ stdenv, fetchurl, cmake
, zlib, libGL, libGLU, libpng, freeglut }:
stdenv.mkDerivation rec {
version = "1.4.0";
name = "gl2ps-${version}";
src = fetchurl {
url = "http://geuz.org/gl2ps/src/${name}.tgz";
sha256 = "1qpidkz8x3bxqf69hlhyz1m0jmfi9kq24fxsp7rq6wfqzinmxjq3";
};
buildInputs = [
cmake
zlib
libGL
libGLU
libpng
freeglut
];
meta = with stdenv.lib; {
homepage = http://geuz.org/gl2ps;
description = "An OpenGL to PostScript printing library";
platforms = platforms.all;
license = licenses.lgpl2;
maintainers = with maintainers; [raskin twhitehead];
};
}

View file

@ -3280,6 +3280,8 @@ in
gitea = callPackage ../applications/version-management/gitea { };
gl2ps = callPackage ../development/libraries/gl2ps { };
glusterfs = callPackage ../tools/filesystems/glusterfs { };
glmark2 = callPackage ../tools/graphics/glmark2 { };