guix-commits
[Top][All Lists]
Advanced

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

07/28: gnu: Add r-lexicon.


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

lbraun pushed a commit to branch master
in repository guix.

commit c3a1373c15908b347cc580abf8522693d21923bb
Author: Lars-Dominik Braun <ldb@leibniz-psychology.org>
AuthorDate: Mon Mar 15 09:36:14 2021 +0100

    gnu: Add r-lexicon.
    
    * gnu/packages/cran.scm (r-lexicon): 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 6f82302..f5ed504 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -27464,3 +27464,26 @@ function.  The package also provides a hack for 
implementing Stanford's coreNLP
 sentiment parser.  The package provides several methods for plot arc
 normalization.")
     (license license:gpl3)))
+
+(define-public r-lexicon
+  (package
+    (name "r-lexicon")
+    (version "1.2.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "lexicon" version))
+        (sha256
+          (base32
+            "0x7rscsh6par2lj11sby7bmz41cxn63iiw51lgh29z09cg8j606c"))))
+    (properties `((upstream-name . "lexicon")))
+    (build-system r-build-system)
+    (propagated-inputs
+      `(("r-data-table" ,r-data-table)
+        ("r-syuzhet" ,r-syuzhet)))
+    (home-page "https://github.com/trinker/lexicon";)
+    (synopsis "Lexicons for Text Analysis")
+    (description
+      "This package provides a collection of lexical hash tables, dictionaries,
+and word lists.")
+    (license license:gpl3)))



reply via email to

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