gnu: Add r-polynom.

* gnu/packages/cran.scm (r-polynom): New variable.
master
Ricardo Wurmus 2018-09-05 12:56:40 +02:00
parent 356230da4a
commit 53718658d2
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 19 additions and 0 deletions

View File

@ -4516,6 +4516,25 @@ patterned after functions in the Python @code{itertools} module, and others
patterned after functions in the snow package.")
(license license:gpl2)))
(define-public r-polynom
(package
(name "r-polynom")
(version "1.3-9")
(source
(origin
(method url-fetch)
(uri (cran-uri "polynom" version))
(sha256
(base32
"1s4xxv5rvpigawknvq27v9vzvs83phfsj5h8mim2lmf5bj950nnk"))))
(build-system r-build-system)
(home-page "https://cran.r-project.org/web/packages/polynom/")
(synopsis "Functions for univariate polynomial manipulations")
(description
"This package provides a collection of functions to implement a class for
univariate polynomial manipulations.")
(license license:gpl2)))
(define-public r-writexl
(package
(name "r-writexl")