Merge pull request #192910 from NixOS/bobby285271/pantheon-gnome43-fixes

pantheon.elementary-terminal: Fix terminal freeze when closing in GLib 2.73.2+
This commit is contained in:
Bobby Rong 2022-10-13 14:19:13 +08:00 committed by GitHub
commit 0d56107123
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, nix-update-script
, pkg-config
, meson
@ -29,6 +30,15 @@ stdenv.mkDerivation rec {
sha256 = "sha256-qxjHrlpdJcfXEUan/JgU7HqBRdB36gxAb5xmd/ySsj0=";
};
patches = [
# TerminalWidget: Fix terminal freeze when closing in GLib 2.73.2+
# https://github.com/elementary/terminal/pull/691
(fetchpatch {
url = "https://github.com/elementary/terminal/commit/3cabe328abb839f12cd21f4d3d474d1d1e42b907.patch";
sha256 = "sha256-wd36vOKqqPHCFPOok+Id9KqxbqjF0ohqsoxAU+jo4+Y=";
})
];
nativeBuildInputs = [
desktop-file-utils
meson