nixpkgs/pkgs/development/libraries/glfw/3.x.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

2019-10-07 15:29:31 +02:00
{ stdenv, lib, fetchFromGitHub, cmake
, libGL, libXrandr, libXinerama, libXcursor, libX11, libXi, libXext
2019-06-19 20:10:14 +02:00
, Cocoa, Kernel, fixDarwinDylibNames
}:
stdenv.mkDerivation rec {
2020-02-06 13:02:09 +01:00
version = "3.3.2";
pname = "glfw";
2015-10-13 00:16:27 +02:00
src = fetchFromGitHub {
owner = "glfw";
repo = "GLFW";
2019-09-09 01:38:31 +02:00
rev = version;
2020-02-06 13:02:09 +01:00
sha256 = "0b5lsxz1xkzip7fvbicjkxvg5ig8gbhx1zrlhandqc0rpk56bvyw";
};
enableParallelBuilding = true;
propagatedBuildInputs = [ libGL ];
nativeBuildInputs = [ cmake ];
2019-10-07 15:29:31 +02:00
buildInputs = [ libX11 libXrandr libXinerama libXcursor libXi libXext ]
2019-06-19 20:10:14 +02:00
++ lib.optionals stdenv.isDarwin [ Cocoa Kernel fixDarwinDylibNames ];
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
2018-09-19 10:50:35 +02:00
preConfigure = lib.optional (!stdenv.isDarwin) ''
substituteInPlace src/glx_context.c --replace "libGL.so.1" "${lib.getLib libGL}/lib/libGL.so.1"
'';
meta = with stdenv.lib; {
description = "Multi-platform library for creating OpenGL contexts and managing input, including keyboard, mouse, joystick and time";
homepage = "https://www.glfw.org/";
license = licenses.zlib;
2019-10-07 15:29:31 +02:00
maintainers = with maintainers; [ marcweber twey ];
platforms = platforms.unix;
};
}