summaryrefslogtreecommitdiff
path: root/modules/home/re.nix
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-05-25 21:40:00 -0500
committerChristian <[email protected]>2026-05-25 21:40:00 -0500
commitb1d722eb3be911aae297914ba6d452537f7761ec (patch)
tree390deb47ebb81f8b2f86b3a2bf1b3f378ae62ac7 /modules/home/re.nix
parent9f73fffecc405e9425acbdce982707f605545427 (diff)
Patch imhex to fix refresh callback
Diffstat (limited to 'modules/home/re.nix')
-rw-r--r--modules/home/re.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/home/re.nix b/modules/home/re.nix
index 8a03173..03fde12 100644
--- a/modules/home/re.nix
+++ b/modules/home/re.nix
@@ -8,7 +8,9 @@
home.packages = [
pkgs.binaryninja-free
pkgs.avalonia-ilspy
- pkgs.imhex
+ (pkgs.imhex.overrideAttrs (old: {
+ patches = [ ./imhex-refresh-callback.patch ];
+ }))
(import ./ghidra.nix { inherit pkgs; })
];
}