me
/
guix
Archived
1
0
Fork 0

gnu: Add julia-intervaltrees.

* gnu/packages/julia-xyz.scm (julia-intervaltrees): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
zimoun 2022-01-04 23:47:54 +01:00 committed by Efraim Flashner
parent 5d697044a8
commit 782eaa180e
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 0 deletions

View File

@ -2807,6 +2807,31 @@ encourage type-piracy for the reason that only one interval package can
unambiguously define the @code{..} and @code{±} operators.") unambiguously define the @code{..} and @code{±} operators.")
(license license:expat))) (license license:expat)))
(define-public julia-intervaltrees
;; Last upstream release on May 2020 and this last release does not contain
;; the file Project.toml.
(let ((commit "e37edab61568d08141a3e9c25ec55caac21e5aa5")
(revision "1"))
(package
(name "julia-intervaltrees")
(version (git-version "1.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/BioJulia/IntervalTrees.jl")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "01x48a5zrx0833s1kjhf0ml4x9xz8xja4ymran770akmf6968yl9"))))
(build-system julia-build-system)
(home-page "https://github.com/BioJulia/IntervalTrees.jl")
(synopsis "Interval Trees for Julia")
(description "This package provides an implementation of an associative
container mapping @code{(K,V)} pairs via the type @code{IntervalTree{K, V}}.
The type @code{K} may be any ordered type.")
(license license:expat))))
(define-public julia-invertedindices (define-public julia-invertedindices
(package (package
(name "julia-invertedindices") (name "julia-invertedindices")