guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add r-styler.


From: guix-commits
Subject: 01/01: gnu: Add r-styler.
Date: Fri, 19 Apr 2019 13:14:33 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 107850b3915c007fe1227bcb396cfe377e661e0f
Author: Nicolò Balzarotti <address@hidden>
Date:   Fri Mar 1 09:07:57 2019 +0100

    gnu: Add r-styler.
    
    * gnu/packages/cran.scm (r-styler): New variable.
    
    Signed-off-by: Ricardo Wurmus <address@hidden>
---
 gnu/packages/cran.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 5ea36cf..2f9e477 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -13920,3 +13920,33 @@ on a negative binomial regression model with 
regularized parameters.  As part
 of the same regression framework, this package also provides functions for
 batch correction, and data correction.")
     (license license:gpl3)))
+
+(define-public r-styler
+  (package
+    (name "r-styler")
+    (version "1.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "styler" version))
+       (sha256
+        (base32
+         "1z24mi88snbz1avjw9phq0lzmigddvycc56s83nxzr9w9z85mh05"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-backports" ,r-backports)
+       ("r-cli" ,r-cli)
+       ("r-magrittr" ,r-magrittr)
+       ("r-purrr" ,r-purrr)
+       ("r-rematch2" ,r-rematch2)
+       ("r-rlang" ,r-rlang)
+       ("r-rprojroot" ,r-rprojroot)
+       ("r-tibble" ,r-tibble)
+       ("r-withr" ,r-withr)
+       ("r-xfun" ,r-xfun)))
+    (home-page "https://github.com/r-lib/styler";)
+    (synopsis "Non-invasive pretty printing of R code")
+    (description
+     "This is a package for pretty-printing R code without changing the user's
+formatting intent.")
+    (license license:gpl3)))



reply via email to

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