diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2019-01-07 16:21:49 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-07 18:44:04 +0100 |
commit | fbebccf7f6459a7543defbbdb98abd26e9ac56e6 (patch) | |
tree | 1c276052a6f8f333e32e23aef7506f1f9fecc6f1 /gnu | |
parent | 45b469a472b1dbaa139208fc30377ed1c8ab5709 (diff) | |
download | patches-fbebccf7f6459a7543defbbdb98abd26e9ac56e6.tar patches-fbebccf7f6459a7543defbbdb98abd26e9ac56e6.tar.gz |
gnu: Add r-docopt.
* gnu/packages/cran.scm (r-docopt): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index eaf34497ef..6551811d49 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -8705,3 +8705,22 @@ manipulate tree data.") "This package provides tools to check the latest release version of R and R packages (on CRAN, Bioconductor or Github).") (license license:artistic2.0))) + +(define-public r-docopt + (package + (name "r-docopt") + (version "0.6.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "docopt" version)) + (sha256 + (base32 + "06zknnd0c5s2y0hbddzdlr3m63ib783izpck6pgz7sjbab5pd068")))) + (build-system r-build-system) + (home-page "https://github.com/docopt/docopt.R") + (synopsis "Command-line interface specification language") + (description + "This package enables you to define a command-line interface by just +giving it a description in the specific format.") + (license license:expat))) |