mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 21:49:34 -05:00
gnu: Add r-tsp.
* gnu/packages/cran.scm (r-tsp): New variable.
This commit is contained in:
parent
2058e37d61
commit
f285346aed
1 changed files with 21 additions and 0 deletions
|
@ -1910,3 +1910,24 @@ (define-public r-processx
|
||||||
@code{processx} can poll a process for standard output or error, with a
|
@code{processx} can poll a process for standard output or error, with a
|
||||||
timeout. It can also poll several processes at once.")
|
timeout. It can also poll several processes at once.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public r-tsp
|
||||||
|
(package
|
||||||
|
(name "r-tsp")
|
||||||
|
(version "1.1-5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "TSP" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"03xxfr5kk4zhzpb1q1pwncdp0dhchm9b48wzhvvxn2dxf3mnby2w"))))
|
||||||
|
(properties `((upstream-name . "TSP")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs `(("r-foreach" ,r-foreach)))
|
||||||
|
(home-page "https://cran.r-project.org/web/packages/TSP/")
|
||||||
|
(synopsis "Traveling salesperson problem (TSP)")
|
||||||
|
(description "This package provides basic infrastructure and some
|
||||||
|
algorithms for the @dfn{traveling salesperson problem}(TSP) (also known as the
|
||||||
|
traveling salesman problem).")
|
||||||
|
(license license:gpl3)))
|
||||||
|
|
Loading…
Reference in a new issue