mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: Add r-options.
* gnu/packages/cran.scm (r-options): New variable. Change-Id: I5e005bc8933796b0e5a6028dec2678fd74cc425d
This commit is contained in:
parent
fa222331bd
commit
ec6d6a51a3
1 changed files with 21 additions and 0 deletions
|
@ -23994,6 +23994,27 @@ (define-public r-bookdown
|
||||||
authoring books and technical documents with R Markdown.")
|
authoring books and technical documents with R Markdown.")
|
||||||
(license license:gpl3)))
|
(license license:gpl3)))
|
||||||
|
|
||||||
|
(define-public r-options
|
||||||
|
(package
|
||||||
|
(name "r-options")
|
||||||
|
(version "0.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "options" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0pprbp2pxvgh120f8dahswws44gpdm4f4nlq3h3nvqrlhnspwnb8"))))
|
||||||
|
(properties `((upstream-name . "options")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(native-inputs (list r-knitr))
|
||||||
|
(home-page "https://dgkf.github.io/options/")
|
||||||
|
(synopsis "Simple, consistent package options")
|
||||||
|
(description
|
||||||
|
"This package provides simple mechanisms for defining and interpreting
|
||||||
|
package options. It provides helpers for interpreting environment variables,
|
||||||
|
global options, defining default values and more.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public r-optparse
|
(define-public r-optparse
|
||||||
(package
|
(package
|
||||||
(name "r-optparse")
|
(name "r-optparse")
|
||||||
|
|
Loading…
Reference in a new issue