summary refs log tree commit diff
path: root/pkgs/development/libraries/glfw
diff options
context:
space:
mode:
authorJames Kay <james@hadean.com>2019-10-07 14:29:31 +0100
committerJon <jonringer@users.noreply.github.com>2019-11-07 09:31:54 -0800
commit5f6f75fcec8aecc6abc26b7b5deb3936a0d5703e (patch)
tree8ce99391b565a806c584f0cfdb7db45ad39f7ea7 /pkgs/development/libraries/glfw
parent82af060040c4e127cd6819cc1c24afbf33b20c91 (diff)
downloadnixpkgs-5f6f75fcec8aecc6abc26b7b5deb3936a0d5703e.tar
nixpkgs-5f6f75fcec8aecc6abc26b7b5deb3936a0d5703e.tar.gz
nixpkgs-5f6f75fcec8aecc6abc26b7b5deb3936a0d5703e.tar.bz2
nixpkgs-5f6f75fcec8aecc6abc26b7b5deb3936a0d5703e.tar.lz
nixpkgs-5f6f75fcec8aecc6abc26b7b5deb3936a0d5703e.tar.xz
nixpkgs-5f6f75fcec8aecc6abc26b7b5deb3936a0d5703e.tar.zst
nixpkgs-5f6f75fcec8aecc6abc26b7b5deb3936a0d5703e.zip
glfw: 3.2.1 -> 3.3
Diffstat (limited to 'pkgs/development/libraries/glfw')
-rw-r--r--pkgs/development/libraries/glfw/3.x.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/libraries/glfw/3.x.nix b/pkgs/development/libraries/glfw/3.x.nix
index 6532d6f81b5..cf988d32399 100644
--- a/pkgs/development/libraries/glfw/3.x.nix
+++ b/pkgs/development/libraries/glfw/3.x.nix
@@ -1,16 +1,17 @@
-{ stdenv, lib, fetchFromGitHub, cmake, libGL, libXrandr, libXinerama, libXcursor, libX11
+{ stdenv, lib, fetchFromGitHub, cmake
+, libGL, libXrandr, libXinerama, libXcursor, libX11, libXi, libXext
 , Cocoa, Kernel, fixDarwinDylibNames
 }:
 
 stdenv.mkDerivation rec {
-  version = "3.2.1";
+  version = "3.3";
   pname = "glfw";
 
   src = fetchFromGitHub {
     owner = "glfw";
     repo = "GLFW";
     rev = version;
-    sha256 = "0gq6ad38b3azk0w2yy298yz2vmg2jmf9g0ydidqbmiswpk25ills";
+    sha256 = "1f1hqpqffzg46z33ybs2c3akmkly7b3qmgp5byk50nvad6g2pm4p";
   };
 
   enableParallelBuilding = true;
@@ -19,7 +20,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ cmake ];
 
-  buildInputs = [ libX11 libXrandr libXinerama libXcursor ]
+  buildInputs = [ libX11 libXrandr libXinerama libXcursor libXi libXext ]
     ++ lib.optionals stdenv.isDarwin [ Cocoa Kernel fixDarwinDylibNames ];
 
   cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
@@ -32,7 +33,7 @@ stdenv.mkDerivation rec {
     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;
-    maintainers = with maintainers; [ marcweber ];
+    maintainers = with maintainers; [ marcweber twey ];
     platforms = platforms.unix;
   };
 }