diff options
author | Kyle Andrews <kyle@posteo.net> | 2022-05-12 02:10:34 +0000 |
---|---|---|
committer | Guix Patches Tester <> | 2022-05-12 03:14:18 +0100 |
commit | 3a37569818a2bdb4372fffe80950d9f35c00ad78 (patch) | |
tree | 2a26611653863bb5f8d57a5ffb2daabaf52875bc | |
parent | 3b66d25e3c5733afc17cfba0109ff12ea76cf747 (diff) | |
download | guix-patches-3a37569818a2bdb4372fffe80950d9f35c00ad78.tar guix-patches-3a37569818a2bdb4372fffe80950d9f35c00ad78.tar.gz |
gnu: Add r-genoud.series-12315
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 30ca01c0a0..2bd741d254 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -33531,6 +33531,26 @@ Friendly and David Meyer.") "Sometimes it is handy to be able to view an image file on an 'R' graphics device. This package just does that. Currently it supports 'PNG' files.") (license (list license:gpl2 license:gpl3)))) +(define-public r-rgenoud + (package + (name "r-rgenoud") + (version "5.8-3.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "rgenoud" version)) + (sha256 + (base32 + "0p93wf6ghgz2nifxbscb6bhahh5jd2ba7nh1c2mb6fmbxnsi3swv")))) + (properties `((upstream-name . "rgenoud"))) + (build-system r-build-system) + (home-page "http://sekhon.berkeley.edu/rgenoud/") + (synopsis + "R Version of GENetic Optimization Using Derivatives") + (description + "This package provides a genetic algorithm plus derivative optimizer.") + (license license:gpl3))) + (define r-gpg (package |