me
/
guix
Archived
1
0
Fork 0

gnu: Add julia-intervalsets.

* gnu/packages/julia-xyz.scm (julia-intervalsets): New variable.
master
Efraim Flashner 2021-06-14 11:36:09 +03:00
parent 25ece40ef7
commit 736eecd52d
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 26 additions and 0 deletions

View File

@ -1571,6 +1571,32 @@ indexed images, sometimes called \"colormap images\" or \"paletted images.\"")
interfaces with @file{.ini} files.")
(license license:expat)))
(define-public julia-intervalsets
(package
(name "julia-intervalsets")
(version "0.5.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaMath/IntervalSets.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0gsz89cd3iygbl5qr389k9vwpg7w1nk0s90g25nsmk34y9hifxag"))))
(build-system julia-build-system)
(propagated-inputs
`(("julia-ellipsisnotation" ,julia-ellipsisnotation)))
(native-inputs
`(("julia-offsetarrays" ,julia-offsetarrays)))
(home-page "https://github.com/JuliaMath/IntervalSets.jl")
(synopsis "Interval Sets for Julia")
(description "This package is intended to implement a \"minimal\" foundation
for intervals upon which other packages might build. In particular, we
encourage type-piracy for the reason that only one interval package can
unambiguously define the @code{..} and @code{±} operators.")
(license license:expat)))
(define-public julia-invertedindices
(package
(name "julia-invertedindices")