diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2025-05-10 08:24:16 +0200 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2025-05-12 08:55:46 +0200 |
| commit | 81bbe65c19998b35db78e9482e7a502b990622ae (patch) | |
| tree | 93bc723b8bd485476f5bb138740181c17dbb51a6 | |
| parent | f934d204da26fd099022775c5336a75a53f407d6 (diff) | |
| download | guix-81bbe65c19998b35db78e9482e7a502b990622ae.tar.gz guix-81bbe65c19998b35db78e9482e7a502b990622ae.zip | |
gnu: r-highs: Update to 1.10.0-1.
* gnu/packages/cran.scm (r-highs): Update to 1.10.0-1.
[native-inputs]: Add gfortran.
Change-Id: Ic1d25f1a28a54dba056185b3ef157be90669747d
| -rw-r--r-- | gnu/packages/cran.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 26e064f705..2b3bf713db 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -50812,21 +50812,22 @@ chunks.") (define-public r-highs (package (name "r-highs") - (version "1.9.0-1") + (version "1.10.0-1") (source (origin (method url-fetch) (uri (cran-uri "highs" version)) (sha256 - (base32 "1q54qd4s6abadn99dv1fywphc9qcnrfql3n63f5p9nlr4y17c2v6")))) + (base32 "1vga07m9pf8ckm593n0hvmcv6hi3vbxcdc553dbd0f0m7cwf29xp")))) (properties '((upstream-name . "highs") (updater-extra-native-inputs . ("cmake-minimal" "which")))) (build-system r-build-system) + (arguments (list #:configure-flags '(list "--configure-args=\"-nostdinc++\""))) (propagated-inputs (list r-checkmate r-rcpp)) - (native-inputs (list cmake-minimal which)) + (native-inputs (list cmake-minimal gfortran which)) (home-page "https://gitlab.com/roigrp/solver/highs") - (synopsis "'HiGHS' Optimization Solver") + (synopsis "HiGHS optimization solver") (description "This package provides an R interface to @code{HiGHS}, an optimization solver. It is designed for solving mixed-integer optimization problems with |
