summaryrefslogtreecommitdiff
path: root/gnu/packages/serialization.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-03-24 09:59:41 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-24 10:14:42 +0100
commit5c8b61c2c5481db82004e5f936e0da10674ec24a (patch)
treef3caae0a4c6ff73a62741e3952983c7ec9fc9261 /gnu/packages/serialization.scm
parent60a8080ff2b7c865baa85846065b4389efb61ab0 (diff)
gnu: flatbuffers: Update to 25.2.10.
* gnu/packages/serialization.scm (flatbuffers) (go-github-com-google-flatbuffers, python-flatbuffers): Update to 25.2.10. Change-Id: Iba22930fc4d7d32c4bf67f79d18a6b6366e4dcdb
Diffstat (limited to 'gnu/packages/serialization.scm')
-rw-r--r--gnu/packages/serialization.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index f7e5d3ca3f0..6081ad24321 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -922,7 +922,7 @@ to generate and parse. The two primary functions are @code{cbor.loads} and
922(define-public flatbuffers 922(define-public flatbuffers
923 (package 923 (package
924 (name "flatbuffers") 924 (name "flatbuffers")
925 (version "24.12.23") ; Keep in sync with python-flatbuffers. 925 (version "25.2.10") ; Keep in sync with python-flatbuffers.
926 (source (origin 926 (source (origin
927 (method git-fetch) 927 (method git-fetch)
928 (uri (git-reference 928 (uri (git-reference
@@ -931,7 +931,7 @@ to generate and parse. The two primary functions are @code{cbor.loads} and
931 (file-name (git-file-name "flatbuffers" version)) 931 (file-name (git-file-name "flatbuffers" version))
932 (sha256 932 (sha256
933 (base32 933 (base32
934 "01g64kmjw8dfhj12j5fgyx70avix9p1ml4w25lm726dixmpq9gp8")))) 934 "1wcpaj4k9dwccb752pl8p54pqwajr51sxjym32q2bpm9ny6ib45v"))))
935 (build-system cmake-build-system) 935 (build-system cmake-build-system)
936 (arguments 936 (arguments
937 '(#:build-type "Release" 937 '(#:build-type "Release"
@@ -981,6 +981,7 @@ game development and other performance-critical applications.")
981 #:import-path "github.com/google/flatbuffers")))) 981 #:import-path "github.com/google/flatbuffers"))))
982 982
983(define-public python-flatbuffers 983(define-public python-flatbuffers
984 ;; TODO: Build from source the same way as go-github-com-google-flatbuffers.
984 (package 985 (package
985 (name "python-flatbuffers") 986 (name "python-flatbuffers")
986 (version (package-version flatbuffers)) 987 (version (package-version flatbuffers))
@@ -989,7 +990,7 @@ game development and other performance-critical applications.")
989 (method url-fetch) 990 (method url-fetch)
990 (uri (pypi-uri "flatbuffers" version)) 991 (uri (pypi-uri "flatbuffers" version))
991 (sha256 992 (sha256
992 (base32 "1b1dqa2hgcx2lf3g51amzd0a56vhl2vx061bvmwdpdp9dayb0419")))) 993 (base32 "0vnj03mr5bx421j9djyq0g61ad0k6v45qaflkf6jy9j1g8vm3r4p"))))
993 (build-system pyproject-build-system) 994 (build-system pyproject-build-system)
994 ;; XXX: No tests on Pypi. Even in the upstream repository, it's unclear 995 ;; XXX: No tests on Pypi. Even in the upstream repository, it's unclear
995 ;; if there is a way to run tests for the python library only. 996 ;; if there is a way to run tests for the python library only.