gnu: Add r-abbreviate.
* gnu/packages/cran.scm (r-abbreviate): New variable. Change-Id: I8632c1e7b2b5f5b03140191f6fea558d540ae496 Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
07ecdb99b6
commit
052ef14521
1 changed files with 19 additions and 0 deletions
|
@ -116,6 +116,25 @@
|
||||||
#:use-module (gnu packages xml)
|
#:use-module (gnu packages xml)
|
||||||
#:use-module (gnu packages xorg))
|
#: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
|
(define-public r-aer
|
||||||
(package
|
(package
|
||||||
(name "r-aer")
|
(name "r-aer")
|
||||||
|
|
Reference in a new issue