1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-07-07 16:14:05 +02:00

gnu: libaom: Graft to 3.9.1 [fixes CVE-2024-5171].

* gnu/packages/video.scm (libaom/fixed): New variable.
  (libaom): Add replacement.

Change-Id: I01659ea4136c1f0198878a68b0b545f91c2074c5
Merges: https://codeberg.org/guix/guix/pulls/8649
Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
This commit is contained in:
Patrick Norton
2026-05-15 11:19:54 -04:00
committed by Nguyễn Gia Phong
parent dd79898f11
commit b8f3db361d
+16
View File
@@ -942,6 +942,7 @@ television and DVD. It is also known as AC-3.")
(define-public libaom
(package
(replacement libaom/fixed)
(name "libaom")
(version "3.8.0")
(source (origin
@@ -977,6 +978,21 @@ television and DVD. It is also known as AC-3.")
shared library and encoder and decoder command-line executables.")
(license license:bsd-2)))
(define-public libaom/fixed
(package
(inherit libaom)
(name "libaom")
(version "3.9.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://aomedia.googlesource.com/aom/")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0wpbc2vnwnvgr2ig64rgy38bi3wg24kaxizzc0i403ar8dx6q3ax"))))))
(define-public libmpeg2
(package
(name "libmpeg2")