[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#61611] [PATCH 03/10] gnu: Add julia-remotefiles.
From: |
Sharlatan Hellseher |
Subject: |
[bug#61611] [PATCH 03/10] gnu: Add julia-remotefiles. |
Date: |
Sun, 19 Feb 2023 00:04:46 +0000 |
* gnu/packages/julia-xyz.scm (julia-remotefiles): New variable.
---
gnu/packages/julia-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 7eb4cb0dae..bbc1985a4b 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -5001,6 +5001,31 @@ (define-public julia-reexport
(description "This package provides tools to re-export modules and
symbols.")
(license license:expat)))
+(define-public julia-remotefiles
+ (package
+ (name "julia-remotefiles")
+ (version "0.5.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/helgee/RemoteFiles.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1zpklzpd4ckp7s4wbf93qmq3dyyrx4pzl41x5i9zbiskadhniqnh"))))
+ (build-system julia-build-system)
+ (arguments
+ '(#:tests? #f)) ; Tests try to download from Internet.
+ (propagated-inputs
+ (list julia-fileio julia-http))
+ (home-page "https://github.com/helgee/RemoteFiles.jl")
+ (synopsis "Download files from the Internet and keep them up-to-date")
+ (description
+ "This package provides a functionality of files download with cURL, wget
or
+@code{HTTP.jl} backends.")
+ (license license:expat)))
+
(define-public julia-referencetests
(package
(name "julia-referencetests")
--
2.39.1
- [bug#61611] [PATCH 00/10]: gnu: Add julia-astrotime, Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 01/10] gnu: Add julia-leapseconds., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 02/10] gnu: Add julia-optionaldata., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 04/10] gnu: Add julia-earthorientation., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 08/10] gnu: Add julia-itemgraphs., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 05/10] gnu: Add julia-inflate., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 07/10] gnu: Add julia-lightgraphs., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 03/10] gnu: Add julia-remotefiles.,
Sharlatan Hellseher <=
- [bug#61611] [PATCH 06/10] gnu: Add julia-arnoldimethod., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 09/10] gnu: Add julia-muladdmacro., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 10/10] gnu: Add julia-astrotime., Sharlatan Hellseher, 2023/02/18