diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2021-04-22 19:21:51 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2021-04-23 18:27:26 +0800 |
commit | 2ab4f4c950ffa7ca40271a534cb3bed997672138 (patch) | |
tree | 60a900d36a2dd87b6e0f098f16cf0d535019c6cf /gnu/packages/gtk.scm | |
parent | a738a663a99ea63078cbba63d9b267e123f475d5 (diff) | |
download | guix-2ab4f4c950ffa7ca40271a534cb3bed997672138.tar guix-2ab4f4c950ffa7ca40271a534cb3bed997672138.tar.gz |
gnu: cairo: Reintroduce security patches [security fixes].
Two patches were accidentally removed in commit
f94cdc86f644984ca83164d40b17e7eed6e22091.
* gnu/packages/patches/cairo-CVE-2018-19876.patch,
gnu/packages/patches/cairo-CVE-2020-35492.patch: New files.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/gtk.scm (cairo)[patches]: Apply them.
Diffstat (limited to 'gnu/packages/gtk.scm')
-rw-r--r-- | gnu/packages/gtk.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 9f3aea4aca..f70e667115 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -142,7 +142,10 @@ tools have full access to view and control running applications.") (string-append "https://cairographics.org/releases/cairo-" version ".tar.xz")) (sha256 - (base32 "0c930mk5xr2bshbdljv005j3j8zr47gqmkry3q6qgvqky6rjjysy")))) + (base32 "0c930mk5xr2bshbdljv005j3j8zr47gqmkry3q6qgvqky6rjjysy")) + (patches (search-patches + "cairo-CVE-2018-19876.patch" + "cairo-CVE-2020-35492.patch")))) (build-system glib-or-gtk-build-system) (outputs '("out" "doc")) (arguments |