mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add r-lpsolve.
* gnu/packages/cran.scm (r-lpsolve): New variable.
This commit is contained in:
parent
212f612040
commit
a3e36d3772
1 changed files with 22 additions and 0 deletions
|
@ -762,3 +762,25 @@ (define-public r-emdbook
|
||||||
topics for ecologists (ISBN 978-0-691-12522-0).")
|
topics for ecologists (ISBN 978-0-691-12522-0).")
|
||||||
;; Any GPL version
|
;; Any GPL version
|
||||||
(license (list license:gpl2 license:gpl3))))
|
(license (list license:gpl2 license:gpl3))))
|
||||||
|
|
||||||
|
(define-public r-lpsolve
|
||||||
|
(package
|
||||||
|
(name "r-lpsolve")
|
||||||
|
(version "5.6.13")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "lpSolve" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"13a9ry8xf5j1f2j6imqrxdgxqz3nqp9sj9b4ivyx9sid459irm6m"))))
|
||||||
|
(properties `((upstream-name . "lpSolve")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(home-page "http://cran.r-project.org/web/packages/lpSolve")
|
||||||
|
(synopsis "R interface to Lp_solve to solve linear/integer programs")
|
||||||
|
(description
|
||||||
|
"Lp_solve is software for solving linear, integer and mixed integer
|
||||||
|
programs. This implementation supplies a \"wrapper\" function in C and some R
|
||||||
|
functions that solve general linear/integer problems, assignment problems, and
|
||||||
|
transportation problems.")
|
||||||
|
(license license:lgpl2.0)))
|
||||||
|
|
Loading…
Reference in a new issue