2015-10-12 23:16:27 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, mesa, libXrandr, libXi, libXxf86vm, libXfixes, xlibsWrapper
|
2015-05-25 03:49:54 +01:00
|
|
|
, libXinerama, libXcursor
|
|
|
|
}:
|
2014-02-04 19:13:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-11-22 14:43:31 +00:00
|
|
|
version = "3.2.1";
|
2015-10-12 23:16:27 +01:00
|
|
|
name = "glfw-${version}";
|
2014-02-04 19:13:30 +00:00
|
|
|
|
2015-10-12 23:16:27 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "glfw";
|
|
|
|
repo = "GLFW";
|
|
|
|
rev = "${version}";
|
2016-11-22 14:43:31 +00:00
|
|
|
sha256 = "0gq6ad38b3azk0w2yy298yz2vmg2jmf9g0ydidqbmiswpk25ills";
|
2014-02-04 19:13:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-05-25 03:49:54 +01:00
|
|
|
buildInputs = [
|
2015-09-15 10:13:22 +01:00
|
|
|
cmake mesa libXrandr libXi libXxf86vm libXfixes xlibsWrapper
|
2015-05-25 03:49:54 +01:00
|
|
|
libXinerama libXcursor
|
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = "-DBUILD_SHARED_LIBS=ON";
|
2014-02-04 19:13:30 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Multi-platform library for creating OpenGL contexts and managing input, including keyboard, mouse, joystick and time";
|
2015-10-12 23:16:27 +01:00
|
|
|
homepage = "http://www.glfw.org/";
|
2014-02-04 19:13:30 +00:00
|
|
|
license = licenses.zlib;
|
|
|
|
maintainers = with maintainers; [ marcweber ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|