me
/
guix
Archived
1
0
Fork 0

gnu: Add r-binman.

* gnu/packages/cran.scm (r-binman): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Peter Lo 2020-06-27 19:48:21 +08:00 committed by Ludovic Courtès
parent 565bf214ad
commit 85d9f9bae6
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 31 additions and 0 deletions

View File

@ -22422,3 +22422,34 @@ operating on semantic version strings. Semantic versioning is a simple set of
rules and requirements that dictate how version numbers are assigned and
incremented as outlined at @url{http://semver.org}.")
(license license:expat)))
(define-public r-binman
(package
(name "r-binman")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "binman" version))
(sha256
(base32
"0hm0h285p4v9lhrqjy8s22f1s1vmfpfla5iaycpj8vw3qb3632az"))))
(properties `((upstream-name . "binman")))
(build-system r-build-system)
(propagated-inputs
`(("r-assertthat" ,r-assertthat)
("r-httr" ,r-httr)
("r-jsonlite" ,r-jsonlite)
("r-rappdirs" ,r-rappdirs)
("r-semver" ,r-semver)
("r-xml2" ,r-xml2)
("r-yaml" ,r-yaml)))
(native-inputs `(("r-knitr" ,r-knitr)))
(home-page "https://github.com/ropensci/binman")
(synopsis "Binary download manager")
(description
"This package provides tools and functions for managing the download of
binary files. Binary repositories are defined in the YAML format. Defining
new pre-download, download and post-download templates allow additional
repositories to be added.")
(license license:expat)))