diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-25 14:04:19 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-25 14:04:19 +0100 |
commit | 72a216a9d048a2a1018877b7e0eadb75fb278cf1 (patch) | |
tree | 0442f59669c4d2fb50f2803b94625dd0c5bd52fe /gnu/packages/cran.scm | |
parent | 0ef062b338962dbe9b3c28334643b2410fbfef78 (diff) | |
download | guix-72a216a9d048a2a1018877b7e0eadb75fb278cf1.tar.gz |
gnu: r-optparse: Move to (gnu packages cran).
* gnu/packages/bioinformatics.scm (r-optparse): Move from here... * gnu/packages/cran.scm (r-optparse): ...to here.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 03aa2f59f5..8bf5404a0c 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -12693,3 +12693,25 @@ SELECT or UPDATE queries to an end-point.") (description "This package provides output formats and utilities for authoring books and technical documents with R Markdown.") (license license:gpl3))) + +(define-public r-optparse + (package + (name "r-optparse") + (version "1.6.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "optparse" version)) + (sha256 + (base32 + "04vyb6dhcga30mvghsg1p052jmf69xqxkvh3hzqz7dscyppy76w1")))) + (build-system r-build-system) + (propagated-inputs + `(("r-getopt" ,r-getopt))) + (home-page "https://github.com/trevorld/optparse") + (synopsis "Command line option parser") + (description + "This package provides a command line parser inspired by Python's +@code{optparse} library to be used with Rscript to write shebang scripts +that accept short and long options.") + (license license:gpl2+))) |