tinygltf: init at 2.9.6

This commit is contained in:
Guilhem Saurel
2025-10-28 19:54:36 +01:00
parent a405bcdd1a
commit dfe018a51c
+30
View File
@@ -0,0 +1,30 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "tinygltf";
version = "2.9.6";
src = fetchFromGitHub {
owner = "syoyo";
repo = "tinygltf";
tag = "v${finalAttrs.version}";
hash = "sha256-3dBxfdXeTbzeQAXaBXFaflLgXYeuOfESdq6V3+0iCXY=";
};
nativeBuildInputs = [
cmake
];
meta = {
description = "Header only C++11 tiny glTF 2.0 library";
homepage = "https://github.com/syoyo/tinygltf";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nim65s ];
platforms = lib.platforms.unix;
};
})