blob: 518def21d28836643d40521a5e1fd775c12fe155 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
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 = {
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 = lib.licenses.mit;
maintainers = [ ];
};
}
|