* More cleanup.
svn path=/nixpkgs/trunk/; revision=22795
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchurl, mesa, libX11, libXext }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "glfw-2.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/glfw/glfw-2.6.tar.bz2;
|
||||
sha256 = "1jnz7szax7410qrkiwkvq34sxy11w46ybyqbkaczdyvqas6cm1hv";
|
||||
};
|
||||
|
||||
buildInputs = [ mesa libX11 libXext ];
|
||||
|
||||
buildPhase = ''
|
||||
ensureDir $out
|
||||
make x11-install PREFIX=$out
|
||||
'';
|
||||
|
||||
installPhase = ":";
|
||||
|
||||
meta = {
|
||||
description = "Multi-platform library for creating OpenGL contexts and managing input, including keyboard, mouse, joystick and time";
|
||||
homepage = http://glfw.sourceforge.net/;
|
||||
license = "zlib/libpng"; # http://www.opensource.org/licenses/zlib-license.php
|
||||
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user