gnu: Add julia-parameters.

* gnu/packages/julia-xyz.scm (julia-parameters): New variable.
This commit is contained in:
Efraim Flashner 2021-05-20 16:44:59 +03:00
parent c1f7692fca
commit dd331f491d
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1331,6 +1331,31 @@ (define-public julia-openspecfun-jll
build tree Yggdrasil.")
(license license:expat))))
(define-public julia-parameters
(package
(name "julia-parameters")
(version "0.12.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/mauro3/Parameters.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0b8lawi7kcws4axfsdf023gyxca15irl648ciyi1kw3wghz3pfi2"))))
(build-system julia-build-system)
(propagated-inputs
`(("julia-orderedcollections" ,julia-orderedcollections)
("julia-unpack" ,julia-unpack)))
(home-page "https://github.com/mauro3/Parameters.jl")
(synopsis "Numerical-model parameter helpers")
(description "This package contains types with default field values, keyword
constructors and (un-)pack macros. Keyword functions can be slow in Julia,
however, the normal positional constructor is also provided and could be used in
performance critical code.")
(license license:expat)))
(define-public julia-parsers
(package
(name "julia-parsers")