mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add julia-codeczlib.
* gnu/packages/julia-xyz.scm (julia-codeczlib): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
dfd7e8215f
commit
87a6109c33
1 changed files with 32 additions and 0 deletions
|
@ -561,6 +561,38 @@ (define-public julia-chainrulestestutils
|
|||
dependencies, while keeping @code{ChainRulesCore.jl} as light-weight as possible.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-codeczlib
|
||||
(package
|
||||
(name "julia-codeczlib")
|
||||
(version "0.7.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/JuliaIO/CodecZlib.jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0xm603nylkwk4bzx66zv1g3syzrvn3jh9spdx7kvcvgszzyrrgh4"))))
|
||||
(build-system julia-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'reset-gzip-timestamps 'make-files-writable
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(for-each make-file-writable
|
||||
(find-files out "\\.gz$"))
|
||||
#t))))))
|
||||
(propagated-inputs
|
||||
`(("julia-zlib-jll" ,julia-zlib-jll)
|
||||
("julia-transcodingstreams" ,julia-transcodingstreams)))
|
||||
(home-page "https://github.com/JuliaIO/CodecZlib.jl")
|
||||
(synopsis "Zlib codecs for @code{TranscodingStreams.jl}")
|
||||
(description "This package provides zlib codecs for
|
||||
@code{TranscodingStreams.jl}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-colors
|
||||
(package
|
||||
(name "julia-colors")
|
||||
|
|
Loading…
Reference in a new issue