about summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-07-25 04:30:55 -0600
committerGitHub <noreply@github.com>2023-07-25 04:30:55 -0600
commitdda3f45b22d3ebe253feda978cb24b6ff471361b (patch)
tree4392abbd61a4861e966a6559e9f68439961da553 /pkgs/applications/terminal-emulators
parent90b68d63dda0d4bed1a9b0f711d920b229048c4f (diff)
parent1f5a92ddfca0cdb9e4a21d3e76aa67814e43d8a1 (diff)
Merge pull request #245349 from chuangzhu/blackbox
blackbox-terminal: fix closing confirm dialog
Diffstat (limited to 'pkgs/applications/terminal-emulators')
-rw-r--r--pkgs/applications/terminal-emulators/blackbox-terminal/default.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/applications/terminal-emulators/blackbox-terminal/default.nix b/pkgs/applications/terminal-emulators/blackbox-terminal/default.nix
index 83cba0abc8d46..c54c92c2010a3 100644
--- a/pkgs/applications/terminal-emulators/blackbox-terminal/default.nix
+++ b/pkgs/applications/terminal-emulators/blackbox-terminal/default.nix
@@ -1,7 +1,7 @@
 { lib
 , stdenv
 , fetchFromGitLab
-, fetchurl
+, fetchpatch
 , meson
 , ninja
 , pkg-config
@@ -37,6 +37,14 @@ stdenv.mkDerivation rec {
     hash = "sha256-ebwh9WTooJuvYFIygDBn9lYC7+lx9P1HskvKU8EX9jw=";
   };
 
+  patches = [
+    # Fix closing confirmation dialogs not showing
+    (fetchpatch {
+      url = "https://gitlab.gnome.org/raggesilver/blackbox/-/commit/3978c9b666d27adba835dd47cf55e21515b6d6d9.patch";
+      hash = "sha256-L/Ci4YqYNzb3F49bUwEWSjzr03MIPK9A5FEJCCct+7A=";
+    })
+  ];
+
   postPatch = ''
     patchShebangs build-aux/meson/postinstall.py
   '';