[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/10: gnu: Add julia-scratch.
From: |
guix-commits |
Subject: |
10/10: gnu: Add julia-scratch. |
Date: |
Thu, 27 May 2021 09:59:47 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 014421ee271f1790d81c9660d34ac26c4f2bf8b6
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu May 27 16:36:12 2021 +0300
gnu: Add julia-scratch.
* gnu/packages/julia-xyz.scm (julia-scratch): New variable.
---
gnu/packages/julia-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 986a7cb..551f016 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -1703,6 +1703,34 @@ other power series in @code{h}.")
a loadable module.")
(license license:expat))))
+(define-public julia-scratch
+ (package
+ (name "julia-scratch")
+ (version "1.0.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaPackaging/Scratch.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "06n0rc7grlg9igkdlrql83q0zpc97bh2hfzj5mw4spfik8ahw2aa"))))
+ (build-system julia-build-system)
+ (arguments
+ `(#:tests? #f)) ; Test suite tries to access the Julia package
registry.
+ (home-page "https://github.com/JuliaPackaging/Scratch.jl")
+ (synopsis "Scratch spaces for all your persistent mutable data needs")
+ (description "This repository implements the scratch spaces API for
+package-specific mutable containers of data. These spaces can contain
datasets,
+text, binaries, or any other kind of data that would be convenient to store in
+a location specific to your package. As compared to Artifacts, these
containers
+of data are mutable. Because the scratch space location on disk is not very
+user-friendly, scratch spaces should, in general, not be used for a storing
+files that the user must interact with through a file browser.")
+ (license license:expat)))
+
(define-public julia-sortingalgorithms
(package
(name "julia-sortingalgorithms")
- branch master updated (c7e5007 -> 014421e), guix-commits, 2021/05/27
- 02/10: gnu: Add julia-versionparsing., guix-commits, 2021/05/27
- 04/10: gnu: Add julia-fuzzycompletions., guix-commits, 2021/05/27
- 07/10: gnu: Add julia-dictionaries., guix-commits, 2021/05/27
- 03/10: gnu: Add julia-invertedindices., guix-commits, 2021/05/27
- 05/10: gnu: Add julia-tableiointerface., guix-commits, 2021/05/27
- 01/10: gnu: Add python-simpervisor., guix-commits, 2021/05/27
- 06/10: gnu: Add julia-indexing., guix-commits, 2021/05/27
- 08/10: gnu: Add julia-colorschemes., guix-commits, 2021/05/27
- 09/10: gnu: Add julia-plotutils., guix-commits, 2021/05/27
- 10/10: gnu: Add julia-scratch.,
guix-commits <=