Unverified Commit 3b01f602 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

vimPlugins.blink-cmp: 0.8.1 -> 0.8.2 (#367768)

parents 18ed0598 c9b29679
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -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;