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

39 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, cmake, libGL, libXrandr, libXinerama, libXcursor, libX11
2019-06-19 18:10:14 +00:00
, Cocoa, Kernel, fixDarwinDylibNames
}:
stdenv.mkDerivation rec {
2016-11-22 14:43:31 +00:00
version = "3.2.1";
2015-10-12 22:16:27 +00:00
name = "glfw-${version}";
2015-10-12 22:16:27 +00:00
src = fetchFromGitHub {
owner = "glfw";
repo = "GLFW";
rev = "${version}";
2016-11-22 14:43:31 +00:00
sha256 = "0gq6ad38b3azk0w2yy298yz2vmg2jmf9g0ydidqbmiswpk25ills";
};
enableParallelBuilding = true;
propagatedBuildInputs = [ libGL ];
nativeBuildInputs = [ cmake ];
2019-06-19 18:10:14 +00:00
buildInputs = [ libX11 libXrandr libXinerama libXcursor ]
++ lib.optionals stdenv.isDarwin [ Cocoa Kernel fixDarwinDylibNames ];
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
2018-09-19 08:50:35 +00: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";
2019-07-10 19:52:51 +00:00
homepage = https://www.glfw.org/;
license = licenses.zlib;
maintainers = with maintainers; [ marcweber ];
platforms = platforms.unix;
};
}