gnu: Add r-genalg.

* gnu/packages/cran.scm (r-genalg): New variable.
This commit is contained in:
Ricardo Wurmus 2019-12-13 23:09:40 +01:00
parent f18c0544f6
commit 270529f633
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -17500,3 +17500,23 @@ (define-public r-ada
both exponential and logistic loss on a given data set.")
;; Any version of the GPL.
(license (list license:gpl2+ license:gpl3+))))
(define-public r-genalg
(package
(name "r-genalg")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "genalg" version))
(sha256
(base32
"1wzfamq8k5yhwbdx0wy1w5bks93brj0p890xxc4yqrja4w38ja3s"))))
(properties `((upstream-name . "genalg")))
(build-system r-build-system)
(home-page "https://github.com/egonw/genalg")
(synopsis "R based genetic algorithm")
(description
"This package provides an R based genetic algorithm for binary and
floating point chromosomes.")
(license license:gpl2)))