mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-03 09:58:57 -05:00
gnu: Add julia-zipfile.
* gnu/packages/julia-xyz.scm (julia-zipfile): New variable.
This commit is contained in:
parent
69b13cd4ea
commit
ddcc5d4375
1 changed files with 23 additions and 0 deletions
|
@ -1288,6 +1288,29 @@ (define-public julia-unitful
|
||||||
system.")
|
system.")
|
||||||
(license license:expat)))
|
(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
|
(define-public julia-zlib-jll
|
||||||
(package
|
(package
|
||||||
(name "julia-zlib-jll")
|
(name "julia-zlib-jll")
|
||||||
|
|
Loading…
Reference in a new issue