guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 82918e4642c61170094720785950a23ecfe90e30
Author: Julien Lepiller <[email protected]>
AuthorDate: Sun Sep 14 09:52:30 2025 +0200
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 ef5815e317..cf6eed69ba 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/")