gnu: Add julia-zipfile.

* gnu/packages/julia-xyz.scm (julia-zipfile): New variable.
This commit is contained in:
Efraim Flashner 2021-05-16 16:24:45 +03:00
parent 69b13cd4ea
commit ddcc5d4375
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1288,6 +1288,29 @@ (define-public julia-unitful
system.")
(license license:expat)))
(define-public julia-zipfile
(package
(name "julia-zipfile")
(version "0.9.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/fhs/ZipFile.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"15bm3ki5mb9nvqs2byznrryq0bilnjcvsfy3k05hxhk9vapilw7k"))))
(build-system julia-build-system)
(propagated-inputs
`(("julia-zlib-jll" ,julia-zlib-jll)))
(home-page "https://github.com/fhs/ZipFile.jl")
(synopsis "Read/Write ZIP archives in Julia")
(description "This module provides support for reading and writing ZIP
archives in Julia.")
(license license:expat)))
(define-public julia-zlib-jll
(package
(name "julia-zlib-jll")