mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add futile.options.
* gnu/packages/statistics.scm (r-futile-options): New variable.
This commit is contained in:
parent
ca65d387fd
commit
b9ff33b50e
1 changed files with 22 additions and 0 deletions
|
@ -1597,3 +1597,25 @@ (define-public r-lambda-r
|
|||
safety.")
|
||||
(license license:lgpl3+)))
|
||||
|
||||
(define-public r-futile-options
|
||||
(package
|
||||
(name "r-futile-options")
|
||||
(version "1.0.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "futile.options" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1hp82h6xqq5cck67h7lpf22n3j7mg3v1mla5y5ivnzrrb7iyr17f"))))
|
||||
(properties
|
||||
`((upstream-name . "futile.options")))
|
||||
(build-system r-build-system)
|
||||
(home-page "http://cran.r-project.org/web/packages/futile.options")
|
||||
(synopsis "Options management framework")
|
||||
(description
|
||||
"The futile.options subsystem provides an easy user-defined options
|
||||
management system that is properly scoped. This means that options created
|
||||
via @code{futile.options} are fully self-contained and will not collide with
|
||||
options defined in other packages.")
|
||||
(license license:lgpl3+)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue