From 1ae67e673594655b5bace7febdf01c66f81a784a Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Tue, 18 May 2021 14:05:55 +0200 Subject: [PATCH] gnu: Add r-contfrac. * gnu/packages/cran.scm (r-contfrac): New variable. --- gnu/packages/cran.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index b8417ec974..14fd834dcd 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -28733,3 +28733,23 @@ (define-public r-randomforestsrc fast interface using subsampling and confidence regions for variable importance.") (license license:gpl3+))) + +(define-public r-contfrac + (package + (name "r-contfrac") + (version "1.1-12") + (source + (origin + (method url-fetch) + (uri (cran-uri "contfrac" version)) + (sha256 + (base32 + "0sq5c7ny235yrkv2xc4insgxby6rvzc1qsj8h301cd2if3lwbgwm")))) + (properties `((upstream-name . "contfrac"))) + (build-system r-build-system) + (home-page + "https://github.com/RobinHankin/contfrac") + (synopsis "Continued Fractions") + (description + "Various utilities for evaluating continued fractions.") + (license license:gpl2)))