mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: Add r-progress.
* gnu/packages/cran.scm (r-progress): New variable.
This commit is contained in:
parent
71be51d531
commit
c9c6f4b543
1 changed files with 24 additions and 0 deletions
|
@ -475,3 +475,27 @@ (define-public r-reshape
|
|||
"Flexibly restructure and aggregate data using just two functions:
|
||||
@code{melt} and @code{cast}. This package provides them.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-progress
|
||||
(package
|
||||
(name "r-progress")
|
||||
(version "1.1.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "progress" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1fxakchfjr5vj59s9sxynd7crpz97xj42438rmkhkf3rjpyspx59"))))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-prettyunits" ,r-prettyunits)
|
||||
("r-r6" ,r-r6)))
|
||||
(home-page "https://github.com/gaborcsardi/progress")
|
||||
(synopsis "Terminal progress bars")
|
||||
(description
|
||||
"This package provides configurable progress bars. They may include
|
||||
percentage, elapsed time, and/or the estimated completion time. They work in
|
||||
terminals, in Emacs ESS, RStudio, Windows Rgui, and the macOS R.app. The
|
||||
package also provides a C++ API, that works with or without Rcpp.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue