mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-02 08:07:29 +01:00
gnu: Add julia-mutablearithmetics.
* gnu/packages/julia-xyz.scm (julia-mutablearithmetics): New variable.
This commit is contained in:
parent
8735dc17d0
commit
8f7d9ce23c
1 changed files with 26 additions and 0 deletions
|
@ -1463,6 +1463,32 @@ (define-public julia-msgpack
|
||||||
Julia, with type-driven, overloadable packing/unpacking functionality.")
|
Julia, with type-driven, overloadable packing/unpacking functionality.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-mutablearithmetics
|
||||||
|
(package
|
||||||
|
(name "julia-mutablearithmetics")
|
||||||
|
(version "0.2.19")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/jump-dev/MutableArithmetics.jl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1zjfq5sh0rc941pbc9kvnr6a2lpr4yd276mw62vbncbz9jg52rrg"))))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-offsetarrays" ,julia-offsetarrays)))
|
||||||
|
(home-page "https://github.com/jump-dev/MutableArithmetics.jl")
|
||||||
|
(synopsis "Interface for arithmetics on mutable types in Julia")
|
||||||
|
(description "MutableArithmetics is a Julia package which allows:
|
||||||
|
@itemize
|
||||||
|
@item mutable types to implement mutable arithmetics
|
||||||
|
@item algorithms that could exploit mutable arithmetics to exploit them while
|
||||||
|
still being completely generic
|
||||||
|
@end itemize")
|
||||||
|
(license license:mpl2.0)))
|
||||||
|
|
||||||
(define-public julia-nanmath
|
(define-public julia-nanmath
|
||||||
(package
|
(package
|
||||||
(name "julia-nanmath")
|
(name "julia-nanmath")
|
||||||
|
|
Loading…
Reference in a new issue