2018-02-24 12:06:44 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, libGL, libXrandr, libXinerama, libXcursor, libX11
|
2019-06-19 19:10:14 +01:00
|
|
|
, Cocoa, Kernel, fixDarwinDylibNames
|
2015-05-25 03:49:54 +01:00
|
|
|
}:
|
2014-02-04 19:13:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-11-22 14:43:31 +00:00
|
|
|
version = "3.2.1";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "glfw";
|
2014-02-04 19:13:30 +00:00
|
|
|
|
2015-10-12 23:16:27 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "glfw";
|
|
|
|
repo = "GLFW";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2016-11-22 14:43:31 +00:00
|
|
|
sha256 = "0gq6ad38b3azk0w2yy298yz2vmg2jmf9g0ydidqbmiswpk25ills";
|
2014-02-04 19:13:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-02-24 12:06:44 +00:00
|
|
|
propagatedBuildInputs = [ libGL ];
|
2017-09-27 21:28:36 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2019-06-19 19:10:14 +01:00
|
|
|
buildInputs = [ libX11 libXrandr libXinerama libXcursor ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ Cocoa Kernel fixDarwinDylibNames ];
|
2015-05-25 03:49:54 +01:00
|
|
|
|
2017-09-27 21:28:36 +01:00
|
|
|
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
|
2014-02-04 19:13:30 +00:00
|
|
|
|
2018-09-19 09:50:35 +01:00
|
|
|
preConfigure = lib.optional (!stdenv.isDarwin) ''
|
|
|
|
substituteInPlace src/glx_context.c --replace "libGL.so.1" "${lib.getLib libGL}/lib/libGL.so.1"
|
|
|
|
'';
|
|
|
|
|
2017-04-29 02:34:43 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-02-04 19:13:30 +00:00
|
|
|
description = "Multi-platform library for creating OpenGL contexts and managing input, including keyboard, mouse, joystick and time";
|
2019-07-10 20:52:51 +01:00
|
|
|
homepage = https://www.glfw.org/;
|
2014-02-04 19:13:30 +00:00
|
|
|
license = licenses.zlib;
|
|
|
|
maintainers = with maintainers; [ marcweber ];
|
2017-04-29 02:34:43 +01:00
|
|
|
platforms = platforms.unix;
|
2014-02-04 19:13:30 +00:00
|
|
|
};
|
|
|
|
}
|