octave: Fix abort due to missing gl2ps library (#38459)

This commit is contained in:
Tyson Whitehead
2019-07-09 15:39:06 -04:00
parent e3993e3a55
commit 6fefb5f7c1
2 changed files with 35 additions and 0 deletions

28
temporary/gl2ps.nix Normal file
View File

@@ -0,0 +1,28 @@
{ 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;
};
}