depot/third_party/nixpkgs/pkgs/development/python-modules/glad/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

24 lines
521 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";
mainProgram = "glad";
homepage = "https://github.com/Dav1dde/glad";
license = licenses.mit;
maintainers = [ ];
};
}