diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-05-31 12:47:57 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-05-31 12:54:49 +0300 |
commit | 9bb2e649a66271f00756143c2a07015e83f471b3 (patch) | |
tree | 346b5f4532552d5957cd4dab1e782a96f87b2219 /gnu | |
parent | adedfd077381fb6ef370ed00baf5a8cc582ef101 (diff) | |
download | guix-9bb2e649a66271f00756143c2a07015e83f471b3.tar.gz |
gnu: Add julia-formatting.
* gnu/packages/julia-xyz.scm (julia-formatting): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/julia-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index da3a61f12f..53bd0e0b64 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -828,6 +828,26 @@ scaled by a constant factor. Consequently, they have a fixed number of digits (bits) after the decimal (radix) point.") (license license:expat))) +(define-public julia-formatting + (package + (name "julia-formatting") + (version "0.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/JuliaIO/Formatting.jl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ma3q9my51rr38bb5712xkc4h3rq0wsfjb4ac6mdh9ywn8rqvrmh")))) + (build-system julia-build-system) + (home-page "https://github.com/JuliaIO/Formatting.jl") + (synopsis "Julia package to provide Python-like formatting support") + (description "This package offers Python-style general formatting and +c-style numerical formatting.") + (license license:expat))) + (define-public julia-forwarddiff (package (name "julia-forwarddiff") |