[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/07: gnu: Add r-elliptic.
From: |
guix-commits |
Subject: |
02/07: gnu: Add r-elliptic. |
Date: |
Wed, 26 May 2021 08:15:31 -0400 (EDT) |
lbraun pushed a commit to branch master
in repository guix.
commit 1af2da50bfed3fb23ef048db10cdb08445e2bc12
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Tue May 18 14:07:12 2021 +0200
gnu: Add r-elliptic.
* gnu/packages/cran.scm (r-elliptic): New variable.
---
gnu/packages/cran.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 14fd834..8108b1b 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -28753,3 +28753,28 @@ importance.")
(description
"Various utilities for evaluating continued fractions.")
(license license:gpl2)))
+
+(define-public r-elliptic
+ (package
+ (name "r-elliptic")
+ (version "1.4-0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "elliptic" version))
+ (sha256
+ (base32
+ "1dhba0yfxjd5rlqsxp5a7s2hclfkla9wigsr39dlma67l6qjjmxn"))))
+ (properties `((upstream-name . "elliptic")))
+ (build-system r-build-system)
+ (inputs `(("pari-gp" ,pari-gp)))
+ (propagated-inputs `(("r-mass" ,r-mass)))
+ (home-page
+ "https://github.com/RobinHankin/elliptic")
+ (synopsis
+ "Weierstrass and Jacobi Elliptic Functions")
+ (description
+ "A suite of elliptic and related functions including Weierstrass and
+Jacobi forms. Also includes various tools for manipulating and visualizing
+complex functions.")
+ (license license:gpl2)))
- branch master updated (f921981 -> b085abb), guix-commits, 2021/05/26
- 01/07: gnu: Add r-contfrac., guix-commits, 2021/05/26
- 04/07: gnu: Add r-kknn., guix-commits, 2021/05/26
- 06/07: gnu: Add r-effects., guix-commits, 2021/05/26
- 03/07: gnu: Add r-hypergeo., guix-commits, 2021/05/26
- 05/07: gnu: Add r-logspline., guix-commits, 2021/05/26
- 07/07: gnu: Add r-bayesfactor., guix-commits, 2021/05/26
- 02/07: gnu: Add r-elliptic.,
guix-commits <=