flake/overlays/nautilus.nix

23 lines
641 B
Nix
Raw Normal View History

{
addPatches,
prev,
...
}: {
2023-11-09 04:21:04 +00:00
gnome =
prev.gnome
// {
2023-12-16 12:05:54 +00:00
nautilus = addPatches prev.gnome.nautilus [
# Restore Nautilus's typeahead ability
# https://aur.archlinux.org/packages/nautilus-typeahead
(prev.fetchpatch {
url = let
repo = "nautilus-typeahead";
file = "nautilus-restore-typeahead.patch";
2024-01-14 09:03:39 +00:00
commit = "524d92c42ea768e5e4ab965511287152ed885d22"; # v45.2.1
2023-12-16 12:05:54 +00:00
in "https://aur.archlinux.org/cgit/aur.git/plain/${file}?h=${repo}&id=${commit}";
hash = "sha256-a40vNo2Nw068GBtjVPUz6WAYRtjD0DB2bG/N14vSTxI=";
})
];
2023-11-09 04:21:04 +00:00
};
}