guix-commits
[Top][All Lists]
Advanced

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

09/09: gnu: Add r-adaptalint.


From: guix-commits
Subject: 09/09: gnu: Add r-adaptalint.
Date: Wed, 1 Jan 2020 07:33:23 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 9380968a8fd0ef5445f5d9e4de12b5e054fa559d
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Jan 1 12:58:39 2020 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 6b88203..b263b6a 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -19206,3 +19206,29 @@ these four functions: @code{rARS()}, @code{rMARS()}, 
@code{rCCARS()}, and
 @code{rASS()}.  These functions can realize sampling based on the algorithms
 above.")
     (license license:gpl2)))
+
+(define-public r-adaptalint
+  (package
+    (name "r-adaptalint")
+    (version "0.2.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "adaptalint" version))
+       (sha256
+        (base32
+         "15qdcvnnbgcps8j5k79354wsc9alswijv8lcafg2i3lghaw536yf"))))
+    (properties `((upstream-name . "adaptalint")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-dplyr" ,r-dplyr)
+       ("r-lintr" ,r-lintr)
+       ("r-purrr" ,r-purrr)))
+    (home-page "https://cran.r-project.org/web/packages/adaptalint/";)
+    (synopsis "Check R code style")
+    (description
+     "This package provides tools to infer the code style (which style rules
+are followed and which ones are not) from one package and use it to check
+another.  This makes it easier to find and correct the most important problems
+first.")
+    (license license:gpl3)))



reply via email to

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