diff options
author | zimoun <zimon.toutoune@gmail.com> | 2021-10-14 17:59:03 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-10-19 10:22:11 +0300 |
commit | dfd7e8215f1d11d128f944abf3890189a1b32fbd (patch) | |
tree | e651ab4547cf4ffa297e2930f5eafafd49f9e57c | |
parent | 4b7b94cac86e08a063cf4a8919912ca9f025a6b6 (diff) | |
download | guix-dfd7e8215f1d11d128f944abf3890189a1b32fbd.tar.gz guix-dfd7e8215f1d11d128f944abf3890189a1b32fbd.zip |
gnu: Add julia-transcodingstreams.
* gnu/packages/julia-xyz.scm (julia-transcodingstreams): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/julia-xyz.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index a1f3cc4cfb..3ece040c5b 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -4563,6 +4563,34 @@ package.") 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 various codecs. + (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: +@itemize +@item fast: small overhead and specialized methods +@item consistent: basic I/O operations work as expected +@item generic: support any I/O objects like files, buffers, pipes, etc. +@item extensible: easy definition for new codec to transcode data +@end itemize") + (license license:expat))) + (define-public julia-typedtables (package (name "julia-typedtables") |