rekado pushed a commit to branch master
in repository guix.
commit 23a57a1b4034b00622eeb489e08aac9994a3a996
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Tue Jul 2 14:44:30 2024 +0200
gnu: r-nloptr: Update to 2.1.1.
* gnu/packages/statistics.scm (r-nloptr): Update to 2.1.1.
[propagated-inputs]: Remove r-testthat.
Change-Id: I649a2e00154c297ec5605c36cb3f1b989f21d6e4
---
gnu/packages/statistics.scm | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 3e40803827..02bbcd5ecf 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -6075,21 +6075,18 @@ expected shortfall risk are also included.")
(define-public r-nloptr
(package
(name "r-nloptr")
- (version "2.0.3")
+ (version "2.1.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "nloptr" version))
(sha256
(base32
- "1mqnjswm0dl6vqc8b2s5k3n1mhanaha3l33vh68dh6zx8q9aq9kv"))))
+ "1snqvav2pxjhssn1nld49mjj89cn2zv7gjn2y8ch22gbzmfzbnjc"))))
(build-system r-build-system)
(native-inputs
- (list r-knitr ; for building vignettes
- pkg-config gfortran))
- (inputs
- (list nlopt))
- (propagated-inputs (list r-testthat))
+ (list gfortran pkg-config r-knitr))
+ (inputs (list nlopt))
(home-page "https://cran.r-project.org/web/packages/nloptr")
(synopsis "R interface to NLopt")
(description