gnu: Add r-rglpk.

* gnu/packages/cran.scm (r-rglpk): New variable.
This commit is contained in:
Ricardo Wurmus 2019-12-13 16:42:35 +01:00
parent 647ff4a98b
commit 72e5c6e95f
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -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))))