diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-05-16 16:40:11 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-05-16 16:40:11 +0300 |
commit | 9e77eb588443a0147bfaaa0559b1eb5c53ee5af3 (patch) | |
tree | f057b8f1a2e55d482e1985bde2cc1c9b45ffa7de /gnu/packages/julia-xyz.scm | |
parent | fcc93efc565b85280c9ea6a531f9cd38eb5ddea7 (diff) | |
download | guix-9e77eb588443a0147bfaaa0559b1eb5c53ee5af3.tar guix-9e77eb588443a0147bfaaa0559b1eb5c53ee5af3.tar.gz |
gnu: Add julia-docstringextensions.
* gnu/packages/julia-xyz.scm (julia-docstringextensions): New variable.
Diffstat (limited to 'gnu/packages/julia-xyz.scm')
-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 68ec6d8c64..0ca4326990 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -446,6 +446,29 @@ including, @code{CircularBuffer}, @code{Queue}, @code{Stack}, @code{Accumulators}, @code{LinkedLists}, @code{SortedDicts} and many others.") (license license:expat))) +(define-public julia-docstringextensions + (package + (name "julia-docstringextensions") + (version "0.8.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/JuliaDocs/DocStringExtensions.jl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fazv87f0j6hw03frx0gqgq9qpjbddqgccm9998a3329wrrs6gwd")))) + (build-system julia-build-system) + (home-page "https://juliadocs.github.io/DocStringExtensions.jl/latest/") + (synopsis "Extensions for Julia's docsystem") + (description "This package provides a collection of useful extensions for +Julia's built-in docsystem. These are features that are not yet mature enough +to be considered for inclusion in Base, or that have sufficiently niche use +cases that including them with the default Julia installation is not seen as +valuable enough at this time.") + (license license:expat))) + (define-public julia-diffresults (package (name "julia-diffresults") |