This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new cc10ff83c1 gnu: miniaudio: Move after the abseil-cpp packages.
cc10ff83c1 is described below

commit cc10ff83c1486aa0587bd7606fb1161c9fc6ab3b
Author: Andreas Enge <[email protected]>
AuthorDate: Tue Aug 5 17:35:47 2025 +0200

    gnu: miniaudio: Move after the abseil-cpp packages.
    
    Currently it obscures some of them since it is in the middle between
    different abseil-cpp versions.
    
    * gnu/packages/cpp.scm (miniaudio): Move the package definition.
    
    Change-Id: If75fd9ace0212fbe48205558a28d023bde6a07ea
---
 gnu/packages/cpp.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 3832b67aec..2f5b5b71b2 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -2202,6 +2202,15 @@ Google's C++ code base.")
            #~(cons* "-DCMAKE_POSITION_INDEPENDENT_CODE=ON"
                     (delete "-DBUILD_SHARED_LIBS=ON" #$flags)))))))))
 
+(define-public abseil-cpp-cxxstd17
+  (abseil-cpp-for-c++-standard abseil-cpp 17))  ;XXX: the default with GCC 11?
+
+(define-public abseil-cpp-cxxstd11
+  (abseil-cpp-for-c++-standard abseil-cpp-20220623 11)) ;last version on C++11
+
+(define-public static-abseil-cpp
+  (make-static-abseil-cpp abseil-cpp))
+
 (define-public miniaudio
   (package
     (name "miniaudio")
@@ -2262,15 +2271,6 @@ Google's C++ code base.")
 made up of a single source file and has no external dependencies.")
     (license license:expat)))
 
-(define-public abseil-cpp-cxxstd17
-  (abseil-cpp-for-c++-standard abseil-cpp 17))  ;XXX: the default with GCC 11?
-
-(define-public abseil-cpp-cxxstd11
-  (abseil-cpp-for-c++-standard abseil-cpp-20220623 11)) ;last version on C++11
-
-(define-public static-abseil-cpp
-  (make-static-abseil-cpp abseil-cpp))
-
 (define-public pegtl
   (package
     (name "pegtl")

Reply via email to