From 82918e4642c61170094720785950a23ecfe90e30 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 14 Sep 2025 09:52:30 +0200 Subject: [PATCH] gnu: hashlink: Update to 1.15. * gnu/packages/haxe.scm (hashlink): Update to 1.15. Change-Id: Ibe3f3df78404cd8f301527c933af577c90ccef65 --- gnu/packages/haxe.scm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/gnu/packages/haxe.scm b/gnu/packages/haxe.scm index ef5815e3171..cf6eed69ba6 100644 --- a/gnu/packages/haxe.scm +++ b/gnu/packages/haxe.scm @@ -197,7 +197,7 @@ includes the compiler and library manager.") (define-public hashlink (package (name "hashlink") - (version "1.14") + (version "1.15") (source (origin (method git-fetch) @@ -206,7 +206,7 @@ includes the compiler and library manager.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "163kj2fww8a1hp93aklla181sp84hrsl8dy5rwrv79057bmkjz5d")) + (base32 "1c6cpbijzprssy382vyz6mim6m2q3k3mw8pj3q2c2sv76xygwnlx")) (modules '((guix build utils))) (snippet '(begin @@ -239,7 +239,13 @@ includes the compiler and library manager.") (string-append #$(this-package-input "minimp3") "/include")) (("include/mikktspace ") (string-append #$(this-package-input "mikktspace") "/include ")) + (("include/meshoptimizer ") + (string-append #$(this-package-input "meshoptimizer") "/include ")) + (("-I include/vhacd") + (string-append "-I " #$(this-package-input "vhacd") "/include")) (("include/mikktspace/mikktspace.o") "") + (("include/meshoptimizer/.*.o ") "") + (("include/meshoptimizer/vcacheanalyzer.o") "") (("-lpng") "-lpng -lmikktspace")))) (replace 'configure (lambda* _ @@ -258,12 +264,14 @@ includes the compiler and library manager.") libuv libvorbis mbedtls-lts + meshoptimizer mikktspace minimp3 openal pcre2 sdl2 sqlite + vhacd zlib)) (native-inputs (list pkg-config)) (home-page "https://hashlink.haxe.org/")