mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
24 lines
637 B
Nix
24 lines
637 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, libGLU, xlibsWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "glbinding";
|
|
version = "3.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cginternals";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1avd7ssms11xx7h0cm8h4pfpk55f07f1j1ybykxfgsym2chb2z08";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ libGLU xlibsWrapper ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/cginternals/glbinding/";
|
|
description = "A C++ binding for the OpenGL API, generated using the gl.xml specification";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.mt-caret ];
|
|
};
|
|
}
|