rekado pushed a commit to branch master
in repository guix.
commit d828ed59a3b187e8c4a1a5fad78b801a83153c2c
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Thu Jun 11 15:04:21 2020 +0200
gnu: r-getoptlong: Update to 1.0.0.
* gnu/packages/cran.scm (r-getoptlong): Update to 1.0.0.
[propagated-inputs]: Add r-crayon.
[native-inputs]: Add r-knitr.
---
gnu/packages/cran.scm | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 29b52c7..f0a8e2c 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -2094,21 +2094,24 @@ compare different dendrograms to one another.")
(define-public r-getoptlong
(package
(name "r-getoptlong")
- (version "0.1.8")
+ (version "1.0.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "GetoptLong" version))
(sha256
(base32
- "1l8xkvyl152bsyvxazsvx2sm1vkygn75x0lsg3sbg7xp6drdn3kc"))))
+ "1fswgy5j4xaipqs7nk7nzrl66vrchhxrk0w7hcsbyij3sxgn3z9j"))))
(properties `((upstream-name . "GetoptLong")))
(build-system r-build-system)
(inputs
`(("perl" ,perl)))
(propagated-inputs
- `(("r-globaloptions" ,r-globaloptions)
+ `(("r-crayon" ,r-crayon)
+ ("r-globaloptions" ,r-globaloptions)
("r-rjson" ,r-rjson)))
+ (native-inputs
+ `(("r-knitr" ,r-knitr)))
(home-page "https://github.com/jokergoo/GetoptLong")
(synopsis "Parsing command-line arguments and variable interpolation")
(description