diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-05-27 16:36:12 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-05-27 16:53:01 +0300 |
commit | 014421ee271f1790d81c9660d34ac26c4f2bf8b6 (patch) | |
tree | 108162ff1c8d6ee820ec651f8dfbffe2090fe234 /gnu/packages | |
parent | f11621f1221530e81731d069c51c00c45907e92b (diff) | |
download | guix-014421ee271f1790d81c9660d34ac26c4f2bf8b6.tar.gz guix-014421ee271f1790d81c9660d34ac26c4f2bf8b6.zip |
gnu: Add julia-scratch.
* gnu/packages/julia-xyz.scm (julia-scratch): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/julia-xyz.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 986a7cbc15..551f016929 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") |