guix-commits
[Top][All Lists]
Advanced

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

05/28: gnu: Add r-textshape.


From: guix-commits
Subject: 05/28: gnu: Add r-textshape.
Date: Mon, 15 Mar 2021 05:55:28 -0400 (EDT)

lbraun pushed a commit to branch master
in repository guix.

commit d332c5c7f2dcf9e3562a411cff2fa43808a326a3
Author: Lars-Dominik Braun <ldb@leibniz-psychology.org>
AuthorDate: Mon Mar 15 09:25:30 2021 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index af5055c..dd37ae0 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -27403,3 +27403,26 @@ percentages, citations, person tags, phone numbers, 
times, and zip codes.")
 fashion.  Safe means it does not rely on placeholders (which can cause errors
 in same length matches).")
     (license license:expat)))
+
+(define-public r-textshape
+  (package
+    (name "r-textshape")
+    (version "1.7.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "textshape" version))
+        (sha256
+          (base32
+            "02111kj3kka84mpx7s19bjna9cas8diw5fxz51v5ggz0ldswa5pa"))))
+    (properties `((upstream-name . "textshape")))
+    (build-system r-build-system)
+    (propagated-inputs
+      `(("r-data-table" ,r-data-table)
+        ("r-slam" ,r-slam)
+        ("r-stringi" ,r-stringi)))
+    (home-page "http://github.com/trinker/textshape";)
+    (synopsis "Tools for Reshaping Text")
+    (description
+      "Tools that can be used to reshape and restructure text data.")
+    (license license:gpl2)))



reply via email to

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