diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2025-06-28 21:28:20 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2025-06-28 21:28:20 -0700 |
commit | df8f311eb14239ff874122b4bce5acf0e5eb3a59 (patch) | |
tree | 44decf2963e60066d60f99dff9f5ab88fbfc2470 /overlays | |
parent | 88159eb1a3ca2b81ae07e0d8921b4fe986e33479 (diff) | |
download | nix-df8f311eb14239ff874122b4bce5acf0e5eb3a59.tar nix-df8f311eb14239ff874122b4bce5acf0e5eb3a59.tar.gz nix-df8f311eb14239ff874122b4bce5acf0e5eb3a59.tar.bz2 nix-df8f311eb14239ff874122b4bce5acf0e5eb3a59.tar.lz nix-df8f311eb14239ff874122b4bce5acf0e5eb3a59.tar.xz nix-df8f311eb14239ff874122b4bce5acf0e5eb3a59.tar.zst nix-df8f311eb14239ff874122b4bce5acf0e5eb3a59.zip |
Redo still necessary ghostty patch
Diffstat (limited to '')
-rw-r--r-- | overlays/default.nix | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/overlays/default.nix b/overlays/default.nix index 1af07c3..620c73c 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -22,13 +22,13 @@ # example = prev.example.overrideAttrs (oldAttrs: rec { # ... # }); - #ghostty = prev.ghostty.overrideAttrs (_: { - # preBuild = '' - # shopt -s globstar - # sed -i 's/^const xev = @import("xev");$/const xev = @import("xev").Epoll;/' **/*.zig - # shopt -u globstar - # ''; - #}); + ghostty = prev.ghostty.overrideAttrs (_: { + preBuild = '' + shopt -s globstar + sed -i 's/^const xev = @import("xev");$/const xev = @import("xev").Epoll;/' **/*.zig + shopt -u globstar + ''; + }); linux-firmware = prev.linux-firmware.overrideAttrs (old: rec { pname = "linux-firmware"; |