guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#50490] [PATCH 0/5] Some julia packages


From: zimoun
Subject: [bug#50490] [PATCH 0/5] Some julia packages
Date: Mon, 27 Sep 2021 18:51:50 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)

Hi Efraim,

On mer., 22 sept. 2021 at 15:13, Efraim Flashner <efraim@flashner.co.il> wrote:
> * gnu/packages/julia-xyz.scm (julia-quadgk): 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 a80964c2b0..bd6a296463 100644
> --- a/gnu/packages/julia-xyz.scm
> +++ b/gnu/packages/julia-xyz.scm
> @@ -2985,6 +2985,31 @@ everything from run time algorithm choice to code 
> generation at compile time.")
>  human-readable format.")
>      (license license:expat)))
>
> +(define-public julia-quadgk
> +  (package
> +    (name "julia-quadgk")
> +    (version "2.4.1")
> +    (source
> +      (origin
> +        (method git-fetch)
> +        (uri (git-reference
> +               (url "https://github.com/JuliaMath/QuadGK.jl";)
> +               (commit (string-append "v" version))))
> +        (file-name (git-file-name name version))
> +        (sha256
> +         (base32 "1hy0629yai6xflgxaflk9764lzr1lzhlghimxk1aqi212q9c6n33"))))
> +    (build-system julia-build-system)
> +    (propagated-inputs
> +     `(("julia-datastructures" ,julia-datastructures)))
> +    (home-page "https://github.com/JuliaMath/QuadGK.jl";)
> +    (synopsis "Adaptive 1d numerical Gauss–Kronrod integration in Julia")

I would not write «in Julia».

> +    (description "This package provides support for one-dimensional numerical
> +integration in Julia using adaptive Gauss-Kronrod quadrature.  The code was
> +originally part of Base Julia.  It supports integration of arbitrary numeric
> +types, including arbitrary precision (@code{BigFloat}), and even integration 
> of
> +arbitrary normed vector spaces (e.g. matrix-valued integrands).")
> +    (license license:expat)))

LGTM.

Cheers,
simon





reply via email to

[Prev in Thread] Current Thread [Next in Thread]