vimPlugins.fff-nvim: 0.9.6 -> 0.10.0

This commit is contained in:
Saad Nadeem
2026-07-17 05:57:04 -04:00
parent 9a7924b7f5
commit 4050db98fe
@@ -13,18 +13,18 @@
writableTmpDirAsHomeHook,
}:
let
version = "0.9.6";
version = "0.10.0";
src = fetchFromGitHub {
owner = "dmtrKovalenko";
repo = "fff.nvim";
repo = "fff";
tag = "v${version}";
hash = "sha256-JOoc4RDPIggZaoPtPEWhQ2msWfgOOuI4PPguFMczJls=";
hash = "sha256-nrstsxOxHTeSKkqpvyxdzyypfHU6wZBQpvNnCfjh9s4=";
};
fff-nvim-lib = rustPlatform.buildRustPackage {
pname = "fff-nvim-lib";
inherit version src;
cargoHash = "sha256-nHVQccbKSfX9fZXh0aPRP33n4nHWhaRdz9k49apULME=";
cargoHash = "sha256-Nlf2Bxwe5KvZF0unpeK/mMFmv4NM+IKPpFOopXoNRxU=";
cargoBuildFlags = [
"-p"
@@ -108,7 +108,7 @@ vimUtils.buildVimPlugin {
meta = {
description = "Fast Fuzzy File Finder for Neovim";
homepage = "https://github.com/dmtrKovalenko/fff.nvim";
homepage = "https://github.com/dmtrKovalenko/fff";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
GaetanLepage