guix-patches
[Top][All Lists]
Advanced

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

[bug#51207] [PATCH 7/9] gnu: Add julia-transcodingstreams.


From: zimoun
Subject: [bug#51207] [PATCH 7/9] gnu: Add julia-transcodingstreams.
Date: Thu, 14 Oct 2021 17:59:03 +0200

* gnu/packages/julia-xyz.scm (julia-transcodingstreams): New variable.
---
 gnu/packages/julia-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 86f3446ba3..cd865db890 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -4563,6 +4563,31 @@ (define-public julia-tracker
 automatic differentiation for its machine learning platform.")
     (license license:expat)))
 
+(define-public julia-transcodingstreams
+  (package
+    (name "julia-transcodingstreams")
+    (version "0.9.6")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/JuliaIO/TranscodingStreams.jl";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "1w3klii293caqiclfh28jggv7f53xclm9fr6xmw38brwrn1hjb48"))))
+    (build-system julia-build-system)
+    (arguments
+     `(#:tests? #f))                    ;Circular dependency with CodecZlib
+    (home-page "https://github.com/JuliaIO/TranscodingStreams.jl";)
+    (synopsis "Fast I/O transcoding data streams")
+    (description "This package provides tools for transcoding data streams
+which are fast: (small overhead and specialized methods; consistent: basic I/O
+operations work as expected; generic: support any I/O objects like files,
+buffers, pipes, etc.; extensible: easy definition for new codec to transcode
+data.")
+    (license license:expat)))
+
 (define-public julia-typedtables
   (package
     (name "julia-typedtables")
-- 
2.32.0






reply via email to

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