diff options
author | Leo Famulari <leo@famulari.name> | 2021-04-24 13:56:56 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-04-27 01:58:55 -0400 |
commit | c48b8fed25c6f9bca95bbae9f85e333be70a6ee0 (patch) | |
tree | 43572c8a3d1dc643c995e432d4ac2b730fb4c0ce /gnu/packages/gstreamer.scm | |
parent | 0cb4ef1c7f8b2f14f1dfa588949fb16b918731c5 (diff) | |
download | guix-c48b8fed25c6f9bca95bbae9f85e333be70a6ee0.tar guix-c48b8fed25c6f9bca95bbae9f85e333be70a6ee0.tar.gz |
gnu: gst-plugins-good: Fix CVE-2021-3497 and CVE-2021-3498.
* gnu/packages/patches/gst-plugins-good-CVE-2021-3497.patch,
gnu/packages/patches/gst-plugins-good-CVE-2021-3498.patch: New files.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/gstreamer.scm (gst-plugins-good)[source]: Use them.
Diffstat (limited to 'gnu/packages/gstreamer.scm')
-rw-r--r-- | gnu/packages/gstreamer.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 6a4e14167d..6a050ca297 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -591,7 +591,9 @@ for the GStreamer multimedia library.") (string-append "https://gstreamer.freedesktop.org/src/" name "/" name "-" version ".tar.xz")) - (patches (search-patches "gst-plugins-good-fix-test.patch")) + (patches (search-patches "gst-plugins-good-fix-test.patch" + "gst-plugins-good-CVE-2021-3497.patch" + "gst-plugins-good-CVE-2021-3498.patch")) (sha256 (base32 "1929nhjsvbl4bw37nfagnfsnxz737cm2x3ayz9ayrn9lwkfm45zp")))) (build-system meson-build-system) |