From 555f641f11a2e19328560d5f3996d7ff032a582f Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 29 Oct 2024 15:25:07 +0900 Subject: [PATCH] gnu: Add ogre-next. * gnu/packages/graphics.scm (ogre-next): New variable. Change-Id: I0342e7c9917a5bf3c91cf464cf80a9137798b722 --- gnu/packages/graphics.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index b4bd05ea8e5..cef7ea4c6ad 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -127,6 +127,7 @@ #:use-module (gnu packages version-control) #:use-module (gnu packages video) #:use-module (gnu packages vulkan) + #:use-module (gnu packages web) #:use-module (gnu packages xiph) #:use-module (gnu packages xml) #:use-module (gnu packages xorg) @@ -1255,6 +1256,29 @@ graphics.") (home-page "https://www.ogre3d.org/") (license license:expat))) +(define-public ogre-next + (package + (inherit ogre) + (name "ogre-next") + (version "3.0.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/OGRECave/ogre-next") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1yrlg3s654xbp95208h9a2b8jcwdk69r6sjvll0aiyvxm4c056cw")))) + (arguments (substitute-keyword-arguments (package-arguments ogre) + ((#:tests? _ #f) + ;; The test suite is currently disabled by the build system + ;; (see: https://github.com/OGRECave/ogre-next/issues/466). + #f))) + (inputs + (modify-inputs (package-inputs ogre) + (append rapidjson))))) + (define-public openexr (package (name "openexr")