guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/06: gnu: Add julia-zipfile.


From: guix-commits
Subject: 02/06: gnu: Add julia-zipfile.
Date: Sun, 16 May 2021 11:04:31 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit ddcc5d43757f3b1f7460994e5a22abeb2f0ab648
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun May 16 16:24:45 2021 +0300

    gnu: Add julia-zipfile.
    
    * gnu/packages/julia-xyz.scm (julia-zipfile): New variable.
---
 gnu/packages/julia-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index dd5ee91..fe16d85 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]