gnu: Add r-getoptlong.
* gnu/packages/cran.scm (r-getoptlong): New variable.
This commit is contained in:
parent
d3c67e1b45
commit
e0268ff2e4
|
@ -22,7 +22,9 @@
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (guix build-system r)
|
#:use-module (guix build-system r)
|
||||||
#:use-module (gnu packages statistics))
|
#:use-module (gnu packages perl)
|
||||||
|
#:use-module (gnu packages statistics)
|
||||||
|
#:use-module (gnu packages web))
|
||||||
|
|
||||||
(define-public r-colorspace
|
(define-public r-colorspace
|
||||||
(package
|
(package
|
||||||
|
@ -338,3 +340,29 @@ type, etc of its branches, nodes and labels) and visually and statistically
|
||||||
compare different dendrograms to one another.")
|
compare different dendrograms to one another.")
|
||||||
;; Any of these versions
|
;; Any of these versions
|
||||||
(license (list license:gpl2 license:gpl3))))
|
(license (list license:gpl2 license:gpl3))))
|
||||||
|
|
||||||
|
(define-public r-getoptlong
|
||||||
|
(package
|
||||||
|
(name "r-getoptlong")
|
||||||
|
(version "0.1.6")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "GetoptLong" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1d98gcvlvp9nz5lbnzr0kkpc2hbkx74hlhrnybqhg1gdwc3g09pm"))))
|
||||||
|
(properties `((upstream-name . "GetoptLong")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("perl" ,perl)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-globaloptions" ,r-globaloptions)
|
||||||
|
("r-rjson" ,r-rjson)))
|
||||||
|
(home-page "https://github.com/jokergoo/GetoptLong")
|
||||||
|
(synopsis "Parsing command-line arguments and variable interpolation")
|
||||||
|
(description
|
||||||
|
"This is yet another command-line argument parser which wraps the
|
||||||
|
powerful Perl module @code{Getopt::Long} and with some adaptation for easier
|
||||||
|
use in R. It also provides a simple way for variable interpolation in R.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in New Issue