rekado pushed a commit to branch master
in repository guix.

commit 6615a364212ac7e731ecf0e9357317257f7114de
Author: Ricardo Wurmus <rek...@elephly.net>
Date:   Fri Mar 2 23:06:33 2018 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index d4aeb26..1c8b9ba 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -2547,3 +2547,24 @@ multivariate distributions.")
      "This package provides tools for stochastic fractal and deterministic
 chaotic time series analysis.")
     (license license:gpl2)))
+
+(define-public r-urca
+  (package
+    (name "r-urca")
+    (version "1.3-0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "urca" version))
+       (sha256
+        (base32
+         "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
+    (build-system r-build-system)
+    (propagated-inputs `(("r-nlme" ,r-nlme)))
+    (native-inputs `(("gfortran" ,gfortran)))
+    (home-page "http://cran.r-project.org/web/packages/urca/";)
+    (synopsis "Unit root and cointegration tests for time series data")
+    (description
+     "This package provides unit root and cointegration tests encountered in
+applied econometric analysis.")
+    (license license:gpl2+)))

Reply via email to