From c9b296792ad26dedc29617b3f48ebe4a78d603d2 Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Mon, 23 Dec 2024 20:04:30 -0300 Subject: [PATCH] vimPlugins.blink-cmp: 0.8.1 -> 0.8.2 --- .../vim/plugins/non-generated/blink-cmp/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 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 5a3416ab142f0..7980b3e788381 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,14 +5,15 @@ stdenv, vimUtils, nix-update-script, + git, }: let - version = "0.8.1"; + version = "0.8.2"; src = fetchFromGitHub { owner = "Saghen"; repo = "blink.cmp"; tag = "v${version}"; - hash = "sha256-hlz1t9W9CEdUw6Fgs+sDLbzX+hdkPyqbOhXKPd8NBDY="; + hash = "sha256-b+7be0ShxFhkUfQo0QTnYaaEE62HQKF5g+xCuTrPRXE="; }; libExt = if stdenv.hostPlatform.isDarwin then "dylib" else "so"; blink-fuzzy-lib = rustPlatform.buildRustPackage { @@ -22,6 +23,8 @@ let useFetchCargoVendor = true; cargoHash = "sha256-t84hokb2loZ6FPPt4eN8HzgNQJrQUdiG5//ZbmlasWY="; + nativeBuildInputs = [ git ]; + env = { # TODO: remove this if plugin stops using nightly rust RUSTC_BOOTSTRAP = true;