From 2a9e61ba606031977600c5888c977f91b46d3af4 Mon Sep 17 00:00:00 2001 From: Rodion Goritskov Date: Sun, 11 Jan 2026 23:32:36 +0100 Subject: gnu: Add collada-dom. * gnu/packages/cpp.scm (collada-dom): New variable. * gnu/packages/patches/collada-dom-boost.patch: New file. * gnu/local.mk: Add collada-dom-boost patch. Change-Id: Iace655f10004d7face86f29afb1606fa3bb16628 Signed-off-by: Liliana Marie Prikler --- gnu/packages/cpp.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'gnu/packages/cpp.scm') diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index ba198290e2c..ecd19ace02e 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -332,6 +332,31 @@ This project is maintained by Kitware in support of ITK, the Insight Segmentation and Registration Toolkit.") (license license:asl2.0))) +(define-public collada-dom + (package + (name "collada-dom") + (version "2.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rdiankov/collada-dom.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1npz3yynv02g7w70c39zqn5w0g4sb438bmkkw0x7gj8cknjnwv9z")) + (patches (search-patches "collada-dom-boost.patch")))) + (build-system cmake-build-system) + (arguments (list #:tests? #f)) ; No tests present + (native-inputs (list pkg-config)) + (inputs (list boost libxml2 minizip zlib)) + (home-page "https://github.com/rdiankov/collada-dom") + (synopsis "COLLADA DOM C++ library") + (description "COLLADA-DOM is a C++ library for loading +and saving COLLADA documents that can contain 2D, 3D, physics +and other types of content.") + (license license:expat))) + (define-public cpp-utilities (package (name "cpp-utilities") -- cgit v1.3