From d985c7f8251ff6aa58ebaf45a99b326ffad7ce05 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Tue, 25 Mar 2025 12:54:02 -0500 Subject: [PATCH] vimPlugins.blink-cmp: 0.14.1 -> 1.0.0 Changelog: https://github.com/Saghen/blink.cmp/blob/v1.0.0/CHANGELOG.md --- .../vim/plugins/non-generated/blink-cmp/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/vim/plugins/non-generated/blink-cmp/default.nix b/pkgs/applications/editors/vim/plugins/non-generated/blink-cmp/default.nix index 96460633f4d7..69ba7ed3e63b 100644 --- a/pkgs/applications/editors/vim/plugins/non-generated/blink-cmp/default.nix +++ b/pkgs/applications/editors/vim/plugins/non-generated/blink-cmp/default.nix @@ -5,15 +5,15 @@ stdenv, vimUtils, nix-update-script, - git, + gitMinimal, }: let - version = "0.14.1"; + version = "1.0.0"; src = fetchFromGitHub { owner = "Saghen"; repo = "blink.cmp"; tag = "v${version}"; - hash = "sha256-iIHV2M+cbXVb/XsFhEMyNDu2TvTlBb2R6DVGmvbQpn4="; + hash = "sha256-0e1XZTbdHUCwhzw9gDFDsN67jX/jqcHTIyPYyJx/shI="; }; blink-fuzzy-lib = rustPlatform.buildRustPackage { inherit version src; @@ -22,7 +22,7 @@ let useFetchCargoVendor = true; cargoHash = "sha256-F1wh/TjYoiIbDY3J/prVF367MKk3vwM7LqOpRobOs7I="; - nativeBuildInputs = [ git ]; + nativeBuildInputs = [ gitMinimal ]; env = { # TODO: remove this if plugin stops using nightly rust