me
/
guix
Archived
1
0
Fork 0

gnu: Add julia-measures.

* gnu/packages/julia-xyz.scm (julia-measures): New variable.
master
Efraim Flashner 2021-05-30 12:55:33 +03:00
parent 8f856c8008
commit 9d6bf9a253
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -1045,6 +1045,28 @@ that let you do deep transformations of code.")
TLS} and cryptography C library for Julia.")
(license license:expat)))
(define-public julia-measures
(package
(name "julia-measures")
(version "0.3.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaGraphics/Measures.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0j34psrdijnqqn9zv0r2sknr1p9q0mmbjvjhmjra37bb5fh2gk8l"))))
(build-system julia-build-system)
(home-page "https://github.com/JuliaGraphics/Measures.jl")
(synopsis "Unified measure and coordinates types")
(description "This library generalizes and unifies the notion of measures
used in Compose, Compose3D, and Escher. It allows building up and representing
expressions involving differing types of units that are then evaluated,
resolving them into absolute units.")
(license license:expat)))
(define-public julia-msgpack
(package
(name "julia-msgpack")