me
/
guix
Archived
1
0
Fork 0

gnu: Add julia-quaternions.

* gnu/packages/julia-xyz.scm (julia-quaternions): New variable.
master
Efraim Flashner 2021-06-08 15:57:40 +03:00
parent ae13182061
commit 122897542a
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 23 additions and 0 deletions

View File

@ -1887,6 +1887,29 @@ human-readable format.")
format.")
(license license:expat)))
(define-public julia-quaternions
(package
(name "julia-quaternions")
(version "0.4.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaGeometry/Quaternions.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1zhynyvchc50hywws2jznpkwydr3njh8cv84d2ylyabhcwwmil9s"))))
(build-system julia-build-system)
(propagated-inputs
`(("julia-dualnumbers" ,julia-dualnumbers)))
(home-page "https://github.com/JuliaGeometry/Quaternions.jl")
(synopsis "Quaternion and dual-quaternion functionality")
(description "Quaternions are best known for their suitability as
representations of 3D rotational orientation. They can also be viewed as an
extension of complex numbers.")
(license license:expat)))
(define-public julia-queryoperators
(package
(name "julia-queryoperators")