1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-08 22:20:38 +02:00

gnu: r-minqa: Move to (gnu packages cran).

* gnu/packages/statistics.scm (r-minqa): Move from here...
* gnu/packages/cran.scm (r-minqa): ...to here.

Change-Id: Ia067ea5a6edbda3552753eda3802ba6f3fb5df8b
This commit is contained in:
Ricardo Wurmus
2025-03-11 12:16:12 +01:00
parent f0abe5d88b
commit 76d5c4cded
2 changed files with 22 additions and 23 deletions

View File

@@ -9476,6 +9476,28 @@ the execution time of R expressions.")
data derived from /etc/mime.types in UNIX-type systems.")
(license license:gpl2)))
(define-public r-minqa
(package
(name "r-minqa")
(version "1.2.8")
(source
(origin
(method url-fetch)
(uri (cran-uri "minqa" version))
(sha256
(base32
"0rslvg4imaijzb5z6vzsx4zqhrna1jk6qkp2kxnzqy0rn2wy8har"))))
(build-system r-build-system)
(propagated-inputs (list r-rcpp))
(native-inputs (list gfortran))
(home-page "https://optimizer.r-forge.r-project.org")
(synopsis "Derivative-free optimization algorithms by quadratic approximation")
(description
"This package provides a derivative-free optimization by quadratic
approximation based on an interface to Fortran implementations by
M. J. D. Powell.")
(license license:gpl2)))
(define-public r-munsell
(package
(name "r-munsell")

View File

@@ -2752,29 +2752,6 @@ functions apply. The implementation can easily be added to functions where
showing the progress is useful e.g. bootstrap.")
(license license:gpl2)))
(define-public r-minqa
(package
(name "r-minqa")
(version "1.2.8")
(source
(origin
(method url-fetch)
(uri (cran-uri "minqa" version))
(sha256
(base32
"0rslvg4imaijzb5z6vzsx4zqhrna1jk6qkp2kxnzqy0rn2wy8har"))))
(build-system r-build-system)
(propagated-inputs
(list r-rcpp))
(native-inputs
(list gfortran))
(home-page "https://optimizer.r-forge.r-project.org")
(synopsis "Derivative-free optimization algorithms by quadratic approximation")
(description
"This package provides a derivative-free optimization by quadratic approximation
based on an interface to Fortran implementations by M. J. D. Powell.")
(license license:gpl2)))
(define-public r-rcppeigen
(package
(name "r-rcppeigen")