1 { lib, stdenv, fetchFromGitHub, cmake, libGLU }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-xmEXZ1ssXzrElqd6D1zooFxLEyspsF4Dau3d9+1/2yw=";
14 nativeBuildInputs = [ cmake ];
15 buildInputs = [ libGLU ];
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 ];