mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add julia-datastructures.
* gnu/packages/julia-xyz.scm (julia-datastructures): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
eccd448c02
commit
6545cef5d7
1 changed files with 24 additions and 0 deletions
|
@ -44,6 +44,30 @@ (define-public julia-compat
|
||||||
way.")
|
way.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-datastructures
|
||||||
|
(package
|
||||||
|
(name "julia-datastructures")
|
||||||
|
(version "0.18.9")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaCollections/DataStructures.jl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0hdqp8ipsqdw5bqqkdvz4j6n67x80sj5azr9vzyxwjfsgkfbnk2l"))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-compat" ,julia-compat)
|
||||||
|
("julia-orderedcollections" ,julia-orderedcollections)))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(home-page "https://github.com/JuliaCollections/DataStructures.jl")
|
||||||
|
(synopsis "Julia module providing different data structures")
|
||||||
|
(description "This package implements a variety of data structures,
|
||||||
|
including, @code{CircularBuffer}, @code{Queue}, @code{Stack},
|
||||||
|
@code{Accumulators}, @code{LinkedLists}, @code{SortedDicts} and many others.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public julia-orderedcollections
|
(define-public julia-orderedcollections
|
||||||
(package
|
(package
|
||||||
(name "julia-orderedcollections")
|
(name "julia-orderedcollections")
|
||||||
|
|
Loading…
Reference in a new issue