diff options
author | Léo Le Bouter <lle-bout@zaclys.net> | 2021-03-11 02:32:19 +0100 |
---|---|---|
committer | Léo Le Bouter <lle-bout@zaclys.net> | 2021-03-11 02:32:19 +0100 |
commit | 1acfda2f949fe61631c7602c865964453ece85e0 (patch) | |
tree | 57f76d3d89adbc42a8c48a79bbf0cc9af2d72e96 /gnu/packages/gnome.scm | |
parent | be31314638e2f42c706b4865274ffbb86d6aca87 (diff) | |
download | guix-1acfda2f949fe61631c7602c865964453ece85e0.tar guix-1acfda2f949fe61631c7602c865964453ece85e0.tar.gz |
gnu: geary: Fix CVE-2020-24661.
* gnu/packages/patches/geary-CVE-2020-24661.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/gnome.scm (geary): Apply it.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 50edf9ebd9..d58aa9956b 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -11339,7 +11339,8 @@ these services on the Guix System.") (file-name (git-file-name name version)) (sha256 (base32 - "01cc921kyh3zxz07biqbdzkjgmdcc36kwjyajm4y382a75cl5zg7")))) + "01cc921kyh3zxz07biqbdzkjgmdcc36kwjyajm4y382a75cl5zg7")) + (patches (search-patches "geary-CVE-2020-24661.patch")))) (build-system meson-build-system) (arguments `(#:glib-or-gtk? #t |