gnu: Add r-linprog.
* gnu/packages/cran.scm (r-linprog): New variable.
This commit is contained in:
parent
099b7c55bb
commit
f3640cee10
|
@ -2640,6 +2640,26 @@ to access PostgreSQL database systems.")
|
||||||
;; under the PostgreSQL license.
|
;; under the PostgreSQL license.
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public r-linprog
|
||||||
|
(package
|
||||||
|
(name "r-linprog")
|
||||||
|
(version "0.9-2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "linprog" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1ki14an0pmhs2mnmfjjvdzd76pshiyvi659zf7hqvqwj0viv4dw9"))))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs `(("r-lpsolve" ,r-lpsolve)))
|
||||||
|
(home-page "http://linprog.r-forge.r-project.org/")
|
||||||
|
(synopsis "Linear programming and optimization")
|
||||||
|
(description
|
||||||
|
"This package can be used to solve Linear Programming / Linear
|
||||||
|
Optimization problems by using the simplex algorithm.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public r-geometry
|
(define-public r-geometry
|
||||||
(package
|
(package
|
||||||
(name "r-geometry")
|
(name "r-geometry")
|
||||||
|
|
Loading…
Reference in New Issue