0efdc90964
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/glbinding/versions
23 lines
641 B
Nix
23 lines
641 B
Nix
{ stdenv, fetchFromGitHub, cmake, libGLU, xlibsWrapper }:
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
pname = "glbinding";
|
|
version = "3.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cginternals";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1lvcps0n0p8gg0p2bkm5aq4b4kv8bvxlaaf4fcham2pgbgzil9d4";
|
|
};
|
|
|
|
buildInputs = [ cmake libGLU xlibsWrapper ];
|
|
|
|
meta = with stdenv.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 ];
|
|
};
|
|
}
|