From dd331f491db93d2854c591bd4f9160b565671408 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 20 May 2021 16:44:59 +0300 Subject: [PATCH] gnu: Add julia-parameters. * gnu/packages/julia-xyz.scm (julia-parameters): New variable. --- gnu/packages/julia-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 72a60ad6d7..4a4be83889 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -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")