mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: Add r-rglpk.
* gnu/packages/cran.scm (r-rglpk): New variable.
This commit is contained in:
parent
647ff4a98b
commit
72e5c6e95f
1 changed files with 26 additions and 0 deletions
|
@ -16275,3 +16275,29 @@ (define-public r-abcadm
|
|||
framework, using @dfn{Approximate Bayesian Computation} (ABC), and to assess
|
||||
long-term reliability under stochastic load profiles.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public r-rglpk
|
||||
(package
|
||||
(name "r-rglpk")
|
||||
(version "0.6-4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "Rglpk" version))
|
||||
(sha256
|
||||
(base32
|
||||
"19mzpyimzq9zqnbi05j79b2di3nzaln8swggs9p8sqdr60qvr3d2"))))
|
||||
(properties `((upstream-name . "Rglpk")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-slam" ,r-slam)))
|
||||
(inputs
|
||||
`(("glpk" ,glpk)))
|
||||
(home-page "http://R-Forge.R-project.org/projects/rglp/")
|
||||
(synopsis "R interface to the GNU Linear Programming Kit")
|
||||
(description
|
||||
"This package provides an R interface to the GNU Linear Programming Kit,
|
||||
software for solving large-scale @dfn{linear programming} (LP), @dfn{mixed
|
||||
integer linear programming} (MILP) and other related problems.")
|
||||
;; Either license
|
||||
(license (list license:gpl2 license:gpl3))))
|
||||
|
|
Loading…
Reference in a new issue