guix-commits
[Top][All Lists]
Advanced

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

03/112: gnu: Add r-waldo.


From: guix-commits
Subject: 03/112: gnu: Add r-waldo.
Date: Wed, 9 Dec 2020 16:06:26 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 71a732c35d18cf627c50209c9615ed886f59de66
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Dec 9 17:45:24 2020 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 19e78c2..526eba0 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -143,6 +143,36 @@ files and provide more explicit control over line 
endings.")
 visualization of their differences.")
     (license license:gpl2+)))
 
+(define-public r-waldo
+  (package
+    (name "r-waldo")
+    (version "0.2.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "waldo" version))
+       (sha256
+        (base32
+         "0lsw8p4wiggqm9fvh5vgmf0ms0npcg3hcwyzlg5ahv5yx4pv5fhz"))))
+    (properties `((upstream-name . "waldo")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-cli" ,r-cli)
+       ("r-diffobj" ,r-diffobj)
+       ("r-fansi" ,r-fansi)
+       ("r-glue" ,r-glue)
+       ("r-rematch2" ,r-rematch2)
+       ("r-rlang" ,r-rlang)
+       ("r-tibble" ,r-tibble)))
+    (home-page "https://github.com/r-lib/waldo";)
+    (synopsis "Find differences between R objects")
+    (description
+     "Compare complex R objects and reveal the key differences.  This package
+was designed particularly for use in testing packages where being able to
+quickly isolate key differences makes understanding test failures much
+easier.")
+    (license license:expat)))
+
 (define-public r-rticles
   (package
     (name "r-rticles")



reply via email to

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