guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/07: gnu: flatbuffers: Add version 23.1.21.


From: guix-commits
Subject: 02/07: gnu: flatbuffers: Add version 23.1.21.
Date: Sun, 5 Mar 2023 17:09:02 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit fa059cb0019ded81dbe47d517ab1728e3954bf9c
Author: Andy Tai <atai@atai.org>
AuthorDate: Thu Mar 2 00:09:55 2023 -0800

    gnu: flatbuffers: Add version 23.1.21.
    
    * gnu/packages/serialization.scm (flatbuffers-next): New variable
    as flatbuffers@2.0.0 is depended on by tensorflow-lite so we cannot
    just upgrade directly, so adding current release flatbuffers@23.1.21.
    
    Co-authored-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/serialization.scm | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 8ab1efd311..3f0a550920 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -699,6 +699,20 @@ C#, C, Go, Java, JavaScript, PHP, and Python.  It was 
originally created for
 game development and other performance-critical applications.")
     (license license:asl2.0)))
 
+(define-public flatbuffers-next
+  (package
+    (inherit flatbuffers)
+    (version "23.1.21")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/google/flatbuffers";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name "flatbuffers" version))
+              (sha256
+               (base32
+                "1z3a6l8g2y53i5xzraswfs2i0i3kk52zv7nzc2q3fgisbyiri3pz"))))))
+
 (define-public python-feather-format
   (package
     (name "python-feather-format")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]