gnu: haxe: Update to 4.3.7.

* gnu/packages/haxe.scm (haxe): Update to 4.3.7.

Change-Id: I02d35c183ab27056ffc51457e8e40aecf9def0a2
Signed-off-by: Julien Lepiller <julien@lepiller.eu>
This commit is contained in:
Jaime Marquínez Ferrándiz 2025-09-13 18:29:28 +02:00 committed by Julien Lepiller
parent 9061347a48
commit 348c654bf3
No known key found for this signature in database
GPG key ID: 53D457B2D636EE82

View file

@ -125,7 +125,7 @@ interactive languages.")
(define-public haxe (define-public haxe
(package (package
(name "haxe") (name "haxe")
(version "4.3.4") (version "4.3.7")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -134,7 +134,7 @@ interactive languages.")
(commit version))) (commit version)))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "1svbxf5g6j7vvqhyjlv1ha9yjh42c94jxvn7xhqbb0smyk64vibm")))) (base32 "1w008l6112xr0nk5jjgi8mz1ifz6vxln1qbac1czp0kl5n976fqm"))))
(build-system dune-build-system) (build-system dune-build-system)
(arguments (arguments
(list #:phases (list #:phases
@ -160,6 +160,7 @@ interactive languages.")
;; install process. ;; install process.
(replace 'build (replace 'build
(lambda* (#:key make-flags parallel-build? #:allow-other-keys) (lambda* (#:key make-flags parallel-build? #:allow-other-keys)
(setenv "CC" #$(cc-for-target))
(invoke "make" "-j" (if parallel-build? (invoke "make" "-j" (if parallel-build?
(number->string (parallel-job-count)) (number->string (parallel-job-count))
"1")))) "1"))))