guix-commits
[Top][All Lists]
Advanced

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

01/122: gnu: Add r-interp.


From: guix-commits
Subject: 01/122: gnu: Add r-interp.
Date: Wed, 10 Aug 2022 07:51:41 -0400 (EDT)

rekado pushed a commit to branch wip-r
in repository guix.

commit ace989b056167cd445b12a08f7e3120a6f7d56a6
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Aug 9 23:33:50 2022 +0200

    gnu: Add r-interp.
    
    * gnu/packages/cran.scm (r-interp): New variable.
---
 gnu/packages/cran.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index fc793e3c92..605b722975 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -10855,6 +10855,29 @@ supported classes are those defined in packages 
@code{network} and
 @code{igraph}.")
     (license license:gpl3)))
 
+(define-public r-interp
+  (package
+    (name "r-interp")
+    (version "1.1-3")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "interp" version))
+              (sha256
+               (base32
+                "0gzsnlg8f7knb100n6vv6307c3v2jd8f9qzrq62jkc6g71mn0kmp"))))
+    (properties `((upstream-name . "interp")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-deldir r-rcpp r-rcppeigen))
+    (native-inputs (list gfortran))
+    (home-page "https://cran.r-project.org/package=interp";)
+    (synopsis "Interpolation methods")
+    (description
+     "Bivariate data interpolation on regular and irregular grids, either
+linear or using splines are the main part of this package.  It is intended to
+provide replacement functions for the ACM licensed @code{akima::interp} and
+@code{tripack::tri.mesh} functions.")
+    (license license:gpl2+)))
+
 (define-public r-abcoptim
   (package
     (name "r-abcoptim")



reply via email to

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