504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
19 lines
506 B
Nix
19 lines
506 B
Nix
{ buildPythonPackage, fetchPypi, lib }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "glad";
|
|
version = "0.1.36";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-P7ANv+x65t2+ugTiFUf2fzzPx5X8NFYkUM8/K7Gf28c=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Multi-Language Vulkan/GL/GLES/EGL/GLX/WGL Loader-Generator based on the official specs";
|
|
homepage = "https://github.com/Dav1dde/glad";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|