summaryrefslogtreecommitdiff
path: root/gnu/packages/cpp.scm
diff options
context:
space:
mode:
authorEmmanouil Fragkiskos Ragkousis <manolis837@gmail.com>2026-08-15 05:39:59 +0000
committerAndreas Enge <andreas@enge.fr>2026-08-24 16:05:01 +0200
commitf2f9b4030a591949aada0b78b76a745e01b9ffd1 (patch)
tree3cc78a315a1dd83272a8af50d74286db3f146b87 /gnu/packages/cpp.scm
parentd5d8f66e4675636993c61f5e30bdd8ab8df71ea8 (diff)
gnu: miniaudio: Update to 0.11.25.
* gnu/packages/cpp.scm (miniaudio): Update to 0.11.25. [source]: Apply a patch for CVE-2026-32837. [properties]: Mark CVE-2026-32837 as patched. * gnu/packages/patches/miniaudio-CVE-2026-32837.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r--gnu/packages/cpp.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 6c4d2870403..3167c1ac94f 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -55,6 +55,7 @@
55;;; Copyright © 2026 Daniel Littlewood <dan@danielittlewood.xyz> 55;;; Copyright © 2026 Daniel Littlewood <dan@danielittlewood.xyz>
56;;; Copyright © 2026 bdunahu <bdunahu@operationnull.com> 56;;; Copyright © 2026 bdunahu <bdunahu@operationnull.com>
57;;; Copyright © 2026 Cayetano Santos <csantosb@inventati.org> 57;;; Copyright © 2026 Cayetano Santos <csantosb@inventati.org>
58;;; Copyright © 2026 Emmanouil Fragkiskos Ragkousis <manolis837@gmail.com>
58;;; 59;;;
59;;; This file is part of GNU Guix. 60;;; This file is part of GNU Guix.
60;;; 61;;;
@@ -2635,7 +2636,7 @@ Google's C++ code base.")
2635(define-public miniaudio 2636(define-public miniaudio
2636 (package 2637 (package
2637 (name "miniaudio") 2638 (name "miniaudio")
2638 (version "0.11.22") 2639 (version "0.11.25")
2639 (source 2640 (source
2640 (origin 2641 (origin
2641 (method git-fetch) 2642 (method git-fetch)
@@ -2644,7 +2645,8 @@ Google's C++ code base.")
2644 (commit version))) 2645 (commit version)))
2645 (file-name (git-file-name name version)) 2646 (file-name (git-file-name name version))
2646 (sha256 2647 (sha256
2647 (base32 "1pjaiq71x24n9983vkhjxrsbraa24053h727db22b1rb2xyfrzm3")))) 2648 (base32 "0v5pk1kfs7gyfsh4n7ypamyd26vckkyx0dm6dm7q6y7fkzlzhkfs"))
2649 (patches (search-patches "miniaudio-CVE-2026-32837.patch"))))
2648 (build-system gnu-build-system) 2650 (build-system gnu-build-system)
2649 (arguments 2651 (arguments
2650 (list 2652 (list
@@ -2690,6 +2692,7 @@ Google's C++ code base.")
2690 (description 2692 (description
2691 "Miniaudio is an audio playback and capture library for C and C++. It is 2693 "Miniaudio is an audio playback and capture library for C and C++. It is
2692made up of a single source file and has no external dependencies.") 2694made up of a single source file and has no external dependencies.")
2695 (properties '((lint-hidden-cve "CVE-2026-32837")))
2693 (license license:expat))) 2696 (license license:expat)))
2694 2697
2695;; Deprecated on 2026-07-08. 2698;; Deprecated on 2026-07-08.