guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 734eed9746b3e5771a757c4ad8165013c9f23bf1
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Fri Dec 19 13:47:13 2025 +0900

    gnu: Add boost-1.88.
    
    * gnu/packages/boost.scm (boost-1.88): New variable.
    
    Change-Id: I2ae3673840200d72c85db4d0b15da9a9b80919d2
---
 gnu/packages/boost.scm | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm
index be859098ff..9ca25c7696 100644
--- a/gnu/packages/boost.scm
+++ b/gnu/packages/boost.scm
@@ -8,7 +8,7 @@
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <[email protected]>
 ;;; Copyright © 2018 Arun Isaac <[email protected]>
 ;;; Copyright © 2018, 2019, 2021 Ricardo Wurmus <[email protected]>
-;;; Copyright © 2018, 2020, 2023 Maxim Cournoyer <[email protected]>
+;;; Copyright © 2018, 2020, 2023, 2025 Maxim Cournoyer <[email protected]>
 ;;; Copyright © 2018, 2020 Efraim Flashner <[email protected]>
 ;;; Copyright © 2019 Mathieu Othacehe <[email protected]>
 ;;; Copyright © 2019, 2020 Giacomo Leidi <[email protected]>
@@ -239,6 +239,21 @@ across a broad spectrum of applications.")
     (license (license:x11-style "https://www.boost.org/LICENSE_1_0.txt";
                                 "Some components have other similar 
licences."))))
 
+(define-public boost-1.88
+  (package
+    (inherit boost)
+    (name "boost")
+    (version "1.88.0")
+    (source (origin
+              (inherit (package-source boost))
+              (uri (string-append
+                    "https://archives.boost.io/release/";
+                    version "/source/boost_"
+                    (version-with-underscores version) ".tar.bz2"))
+              (sha256
+               (base32
+                "0yrgn6syk260ckq9ld44vjv1bl6bamhy3jbp10kikcipcv0d5na6"))))))
+
 (define-public boost-1.83
   (hidden-package (package (inherit boost)
     (name "boost")

Reply via email to