guix-commits
[Top][All Lists]
Advanced

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

02/57: gnu: Add r-lobstr.


From: guix-commits
Subject: 02/57: gnu: Add r-lobstr.
Date: Mon, 26 Jul 2021 09:39:17 -0400 (EDT)

rekado pushed a commit to branch r-updates
in repository guix.

commit 45522277174bdff222d15761961190de928b43fc
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Jul 26 15:15:31 2021 +0200

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index e4b96ad..859e6b4 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -26824,6 +26824,33 @@ workflow.  The advantages are:
 ")
     (license license:expat)))
 
+(define-public r-lobstr
+  (package
+    (name "r-lobstr")
+    (version "1.1.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "lobstr" version))
+       (sha256
+        (base32
+         "0vkif17825x33cz8r89j0qph4wj5l8fzfgl8nh2g7m2v140cxjdq"))))
+    (properties `((upstream-name . "lobstr")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-crayon" ,r-crayon)
+       ("r-rcpp" ,r-rcpp)
+       ("r-rlang" ,r-rlang)))
+    (home-page "https://github.com/r-lib/lobstr";)
+    (synopsis "Visualize R data structures with trees")
+    (description
+     "This package provides a set of tools for inspecting and understanding R
+data structures inspired by @code{str}.  It includes @code{ast} for
+visualizing abstract syntax trees, @code{ref} for showing shared references,
+@code{cst} for showing call stack trees, and @code{obj_size} for computing
+object sizes.")
+    (license license:gpl3)))
+
 (define-public r-gpfit
   (package
     (name "r-gpfit")



reply via email to

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