This is an automated email from the git hooks/post-receive script.
andreas pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 8431f96391 gnu: highs: Cosmetic changes.
8431f96391 is described below
commit 8431f963912d793f43d33a43cf961c356bef31dc
Author: Andreas Enge <[email protected]>
AuthorDate: Wed Apr 30 16:33:55 2025 +0200
gnu: highs: Cosmetic changes.
This adds small changes that were forgotten in the previous commit.
* gnu/packages/maths.scm (highs): Do not use a git revision since this
is a regular release.
Change-Id: I56c6401f8569cc3268892dabfe38ac4658ad8953
---
gnu/packages/maths.scm | 40 +++++++++++++++++++---------------------
1 file changed, 19 insertions(+), 21 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index fdbd189ac4..ee33efb65e 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -11040,25 +11040,23 @@ expression parsing and evaluation.")
(license license:expat)))
(define-public highs
- (let ((commit "v1.10.0")
- (revision "1"))
- (package
- (name "highs")
- (version (git-version "1.10.0" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/ERGO-Code/HiGHS")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "19q99nkk6r6k91gxp8a5rjil1399qyfgfc6jqlg2gd82vpcw8c8b"))))
- (build-system cmake-build-system)
- (home-page "https://highs.dev")
- (synopsis "High performance software for linear optimization")
- (description
- "HiGHS provides serial and parallel solvers for large-scale
-sparse linear programming (LP), mixed-integer programming (MIP), and quadratic
+ (package
+ (name "highs")
+ (version "1.10.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ERGO-Code/HiGHS")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "19q99nkk6r6k91gxp8a5rjil1399qyfgfc6jqlg2gd82vpcw8c8b"))))
+ (build-system cmake-build-system)
+ (home-page "https://highs.dev")
+ (synopsis "High performance software for linear optimization")
+ (description
+ "HiGHS provides serial and parallel solvers for large-scale sparse
+linear programming (LP), mixed-integer programming (MIP), and quadratic
programming (QP) models")
- (license license:expat))))
+ (license license:expat)))