Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
769 B
Nix
33 lines
769 B
Nix
{
|
|
lib,
|
|
vimUtils,
|
|
fetchFromGitea,
|
|
nix-update-script,
|
|
vimPlugins,
|
|
}:
|
|
vimUtils.buildVimPlugin {
|
|
pname = "cmp-async-path";
|
|
version = "0-unstable-2025-04-13";
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "FelipeLema";
|
|
repo = "cmp-async-path";
|
|
rev = "0ed1492f59e730c366d261a5ad822fa37e44c325";
|
|
hash = "sha256-J1Iw7yNfvWq7Jul25Eyx4qk9lSiLpZt4TRvTYi1DXtk=";
|
|
};
|
|
|
|
checkInputs = [ vimPlugins.nvim-cmp ];
|
|
|
|
passthru.updateScript = nix-update-script {
|
|
extraArgs = [ "--version=branch" ];
|
|
};
|
|
|
|
meta = {
|
|
description = "Nvim-cmp source for filesystem paths with async processing";
|
|
homepage = "https://codeberg.org/FelipeLema/cmp-async-path/";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|