diff options
| author | Andreas Enge <andreas@enge.fr> | 2025-08-05 17:35:47 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-08-05 17:37:49 +0200 |
| commit | cc10ff83c1486aa0587bd7606fb1161c9fc6ab3b (patch) | |
| tree | e610ba0621f346dda3fae7cabbb5fbe146ca4724 /gnu/packages/cpp.scm | |
| parent | 47934ef62283cca2b94fbdd43ba04490e29f657f (diff) | |
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
Diffstat (limited to 'gnu/packages/cpp.scm')
| -rw-r--r-- | gnu/packages/cpp.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 3832b67aec6..2f5b5b71b29 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") |
