mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
24 lines
610 B
Nix
24 lines
610 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, libGLU }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "glbinding";
|
|
version = "3.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cginternals";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-xmEXZ1ssXzrElqd6D1zooFxLEyspsF4Dau3d9+1/2yw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ libGLU ];
|
|
|
|
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 ];
|
|
};
|
|
}
|