1 { lib, stdenv, fetchFromGitHub, cmake, libGLU, xlibsWrapper }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "1avd7ssms11xx7h0cm8h4pfpk55f07f1j1ybykxfgsym2chb2z08";
14 nativeBuildInputs = [ cmake ];
15 buildInputs = [ libGLU xlibsWrapper ];
18 homepage = "https://github.com/cginternals/glbinding/";
19 description = "A C++ binding for the OpenGL API, generated using the gl.xml specification";
20 license = licenses.mit;
21 maintainers = [ maintainers.mt-caret ];