2017-09-27 21:27:20 +01:00
|
|
|
{ stdenv, fetchurl, mesa_glu, mesa_noglu, libX11, libXext }:
|
2010-02-05 22:00:51 +00:00
|
|
|
|
2014-02-04 19:13:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-18 14:35:19 +00:00
|
|
|
name = "glfw-2.7.9";
|
2009-11-30 01:05:02 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-02-04 19:13:30 +00:00
|
|
|
url = "mirror://sourceforge/glfw/${name}.tar.bz2";
|
2013-12-18 14:35:19 +00:00
|
|
|
sha256 = "17c2msdcb7pn3p8f83805h1c216bmdqnbn9hgzr1j8wnwjcpxx6i";
|
2009-11-30 01:05:02 +00:00
|
|
|
};
|
|
|
|
|
2017-09-27 21:27:20 +01:00
|
|
|
buildInputs = [ mesa_glu mesa_noglu libX11 libXext ];
|
2009-11-30 01:05:02 +00:00
|
|
|
|
|
|
|
buildPhase = ''
|
2014-02-04 19:13:30 +00:00
|
|
|
make x11
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out
|
2015-02-03 20:33:26 +00:00
|
|
|
make x11-dist-install PREFIX=$out
|
|
|
|
mv $out/lib/libglfw.so $out/lib/libglfw.so.2
|
|
|
|
ln -s libglfw.so.2 $out/lib/libglfw.so
|
2014-02-04 19:13:30 +00:00
|
|
|
'';
|
2010-02-05 22:00:51 +00:00
|
|
|
|
2014-02-04 19:13:30 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-28 16:35:01 +01:00
|
|
|
description = "Multi-platform library for creating OpenGL contexts and managing input, including keyboard, mouse, joystick and time";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://glfw.sourceforge.net/;
|
2014-02-04 19:13:30 +00:00
|
|
|
license = licenses.zlib;
|
2010-07-28 16:35:01 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
2014-02-04 19:13:30 +00:00
|
|
|
platforms = platforms.linux;
|
2009-11-30 01:05:02 +00:00
|
|
|
};
|
|
|
|
}
|