diff options
author | Ludovic Courtès <ludo@gnu.org> | 2025-06-11 15:56:47 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:34 +0200 |
commit | ca8e8e206b3e687af56bc623e9439c9f5358c12a (patch) | |
tree | 3ef797f7c66dc9e80a22e2d180659d2411975e02 | |
parent | bf737ede4846f6ff799fbcc2ca3b6c7a434e4d90 (diff) |
gnu: libvpx: Ungraft.
* gnu/packages/video.scm (libvpx)[replacement]: Remove.
[source]: Add ‘libvpx-CVE-2025-5262.patch’.
Change-Id: Ia7211e23586bb07f73f5e3b3d7a298cd6c893bf2
-rw-r--r-- | gnu/packages/video.scm | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index eb6e797406..3736de41ca 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2923,7 +2923,6 @@ To load this plugin, specify the following option when starting mpv: (package (name "libvpx") (version "1.15.0") - (replacement libvpx/fixed) (source (origin (method git-fetch) (uri (git-reference @@ -2933,7 +2932,8 @@ To load this plugin, specify the following option when starting mpv: (sha256 (base32 "1q2scpfiifhpilw6qqpqihk98plj57gwh0vyiqwsv991i7b322bv")) - (patches (search-patches "libvpx-CVE-2016-2818.patch")))) + (patches (search-patches "libvpx-CVE-2016-2818.patch" + "libvpx-CVE-2025-5262.patch")))) (build-system gnu-build-system) (arguments `(#:configure-flags (list "--enable-shared" @@ -2962,11 +2962,6 @@ To load this plugin, specify the following option when starting mpv: (license license:bsd-3) (home-page "https://www.webmproject.org/"))) -(define-public libvpx/fixed - (hidden-package - (package-with-extra-patches libvpx - (search-patches "libvpx-CVE-2025-5262.patch")))) - (define-public orfondl (package (name "orfondl") |