guix-patches
[Top][All Lists]
Advanced

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

[bug#28089] [PATCH 28/29] gnu: Add r-inline.


From: Ricardo Wurmus
Subject: [bug#28089] [PATCH 28/29] gnu: Add r-inline.
Date: Mon, 14 Aug 2017 22:57:10 +0200

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 8200ccfaf..9e50eed3c 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -689,3 +689,23 @@ diagnostic checking in linear regression models.  
Furthermore, some generic
 tools for inference in parametric models are provided.")
     ;; Either version is okay
     (license (list license:gpl2 license:gpl3))))
+
+(define-public r-inline
+  (package
+    (name "r-inline")
+    (version "0.3.14")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "inline" version))
+              (sha256
+               (base32
+                "0cf9vya9h4znwgp6s1nayqqmh6mwyw7jl0isk1nx4j2ijszxcd7x"))))
+    (build-system r-build-system)
+    (home-page "http://cran.r-project.org/web/packages/inline";)
+    (synopsis "Functions to inline C, C++, Fortran function calls from R")
+    (description
+     "This package provides functionality to dynamically define R functions
+and S4 methods with inlined C, C++ or Fortran code supporting @code{.C} and
address@hidden calling conventions.")
+    ;; Any version of the LGPL.
+    (license license:lgpl3+)))
-- 
2.13.3







reply via email to

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