nixpkgs/pkgs/development/python-modules/glad/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

25 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 = [ ];
};
}