guix-commits
[Top][All Lists]
Advanced

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

03/28: gnu: Add r-mgsub.


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

lbraun pushed a commit to branch master
in repository guix.

commit 4bc1707dba0098d416cbe4b53a3077025a2cc422
Author: Lars-Dominik Braun <ldb@leibniz-psychology.org>
AuthorDate: Mon Mar 15 09:20:07 2021 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index c41d6d9..af5055c 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -27379,3 +27379,27 @@ context of discourse analysis.  Tools include 
removal/extraction/replacement of
 abbreviations, dates, dollar amounts, email addresses, hash tags, numbers,
 percentages, citations, person tags, phone numbers, times, and zip codes.")
     (license license:gpl2)))
+
+(define-public r-mgsub
+  (package
+    (name "r-mgsub")
+    (version "1.7.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "mgsub" version))
+        (sha256
+          (base32
+            "02l1b96zv36ia0c97wgcwfhi037mbn3wy9c64hcw0n0w67yj77rr"))))
+    (properties `((upstream-name . "mgsub")))
+    (build-system r-build-system)
+    (native-inputs `(("r-knitr" ,r-knitr)))
+    (home-page
+      "https://cran.r-project.org/package=mgsub";)
+    (synopsis
+      "Safe, Multiple, Simultaneous String Substitution")
+    (description
+      "Designed to enable simultaneous substitution in strings in a safe
+fashion.  Safe means it does not rely on placeholders (which can cause errors
+in same length matches).")
+    (license license:expat)))



reply via email to

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