diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-05-16 16:24:45 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-05-16 16:24:45 +0300 |
commit | ddcc5d43757f3b1f7460994e5a22abeb2f0ab648 (patch) | |
tree | 123940093332112b911ac6eae789a8eabe2f5b01 /gnu | |
parent | 69b13cd4eaa88ad7fe1b2e6c5ceae0357eedfac2 (diff) | |
download | guix-ddcc5d43757f3b1f7460994e5a22abeb2f0ab648.tar.gz |
gnu: Add julia-zipfile.
* gnu/packages/julia-xyz.scm (julia-zipfile): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/julia-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index dd5ee91724..fe16d85ea7 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -1288,6 +1288,29 @@ working with @acronym{URIs,Uniform Resource Identifiers}, as defined in RFC 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") |