diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-02-19 22:37:07 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-02-19 23:14:56 +0100 |
commit | 1c701708a718f9bd5b3e0e6ebde25e2204ab6222 (patch) | |
tree | dbc137731996a73df98cea24b9de3926f6270426 /gnu | |
parent | 80986c6ab64ff4d589e9451db827d3d93b96d2c7 (diff) |
gnu: Add perl-math-cephes.
* gnu/packages/perl-maths.scm (perl-math-cephes): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/perl-maths.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/perl-maths.scm b/gnu/packages/perl-maths.scm index e03458a9c0..4f70c85fcf 100644 --- a/gnu/packages/perl-maths.scm +++ b/gnu/packages/perl-maths.scm @@ -24,6 +24,25 @@ #:use-module (gnu packages perl) #:use-module (gnu packages perl-check)) +(define-public perl-math-cephes + (package + (name "perl-math-cephes") + (version "0.5305") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/S/SH/SHLOMIF/Math-Cephes-" + version ".tar.gz")) + (sha256 + (base32 + "18c3xg53d1vv7hlj43601jj7ks119fm6ndpwpv94irr2905806jn")))) + (build-system perl-build-system) + (home-page "https://metacpan.org/release/Math-Cephes") + (synopsis "Perl interface to the Cephes math library") + (description "The Math::Cephes module provides a Perl interface to over +150 functions of the Cephes math library.") + (license license:perl-license))) + (define-public perl-math-matrixreal (package (name "perl-math-matrixreal") |