guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add r-abbreviate.


From: guix-commits
Subject: branch master updated: gnu: Add r-abbreviate.
Date: Mon, 19 Feb 2024 05:01:00 -0500

This is an automated email from the git hooks/post-receive script.

rekado pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 052ef14521 gnu: Add r-abbreviate.
052ef14521 is described below

commit 052ef145215d45e1fe0e179df3b8c9626e021c2b
Author: Wiktor Żelazny <wz@freeshell.de>
AuthorDate: Sun Feb 18 19:31:36 2024 +0100

    gnu: Add r-abbreviate.
    
    * gnu/packages/cran.scm (r-abbreviate): New variable.
    
    Change-Id: I8632c1e7b2b5f5b03140191f6fea558d540ae496
    Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
---
 gnu/packages/cran.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index bcb5ab4964..2071fc8742 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -116,6 +116,25 @@
   #:use-module (gnu packages xml)
   #:use-module (gnu packages xorg))
 
+(define-public r-abbreviate
+  (package
+    (name "r-abbreviate")
+    (version "0.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "abbreviate" version))
+       (sha256
+        (base32 "1cvjdbi17qz8gr5898zchm5fyz4n51z66lwps25v8a9mhwab8imi"))))
+    (properties `((upstream-name . "abbreviate")))
+    (build-system r-build-system)
+    (home-page "https://github.com/sigbertklinke/abbreviate";)
+    (synopsis "Readable string abbreviation")
+    (description
+     "This package abbreviates strings to a specified minimum number of
+characters, such that the strings remain unique (if they originally were).")
+    (license license:gpl3)))
+
 (define-public r-aer
   (package
     (name "r-aer")



reply via email to

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