gnome3.gnome-control-center: Fix crash after leaving user-accounts

This commit is contained in:
Jan Tojnar 2020-10-13 22:43:45 +02:00
parent 94ed06e3fa
commit 948edf8f26
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,5 +1,6 @@
{ fetchurl { fetchurl
, fetchFromGitLab , fetchFromGitLab
, fetchpatch
, stdenv , stdenv
, substituteAll , substituteAll
, accountsservice , accountsservice
@ -148,6 +149,17 @@ stdenv.mkDerivation rec {
inherit glibc libgnomekbd tzdata; inherit glibc libgnomekbd tzdata;
inherit cups networkmanagerapplet; inherit cups networkmanagerapplet;
}) })
# Fix double free when leaving user accounts panel.
# https://gitlab.gnome.org/GNOME/gnome-control-center/merge_requests/853
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/gnome-control-center/commit/e80b4b5f58f448c5a3d38721f7bba32c413d46e7.patch";
sha256 = "GffsSU/uNS0Fg2lXbOuD/BrWBT4D2VKgWNGifG0FBUw=";
})
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/gnome-control-center/commit/64686cfee330849945f6ff4dcc43393eb1a6e59c.patch";
sha256 = "4VJU0q6qOtGzd/hmDncckInfEjCkC8+lXmDgxwc4VJU=";
})
]; ];
postPatch = '' postPatch = ''