guix-commits
[Top][All Lists]
Advanced

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

28/30: gnu: Add r-cli.


From: Ricardo Wurmus
Subject: 28/30: gnu: Add r-cli.
Date: Tue, 19 Dec 2017 14:36:08 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 2976f304e2f926f6efbb436c3e4ba600d13ac939
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Dec 19 20:13:42 2017 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 3a3fc31..9b80b68 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -1817,3 +1817,25 @@ plots in @code{ggplot2}.")
 distributions over time or space.  This package enables the creation of such
 plots in @code{ggplot2}.")
     (license license:gpl2)))
+
+(define-public r-cli
+  (package
+    (name "r-cli")
+    (version "1.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "cli" version))
+       (sha256
+        (base32
+         "07as3dr7vwx02p3qgzlmxz1dlrd3x3lysrzp222ip9jcjpydp8wg"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-assertthat" ,r-assertthat)
+       ("r-crayon" ,r-crayon)))
+    (home-page "https://github.com/r-lib/cli#readme";)
+    (synopsis "Helpers for developing command line interfaces")
+    (description "This package provides a suite of tools designed to build
+attractive command line interfaces (CLIs).  It includes tools for drawing
+rules, boxes, trees, and Unicode symbols with ASCII alternatives.")
+    (license license:expat)))



reply via email to

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