blink: 0.14.1 -> 1.0.0

This commit is contained in:
raf 2025-03-29 19:03:31 +03:00
parent c7df81c3b8
commit e7d5e6c4ac
No known key found for this signature in database
GPG key ID: 29D95B64378DB4BF

View file

@ -1,9 +1,8 @@
{ {
stdenv, stdenv,
rustPlatform, rustPlatform,
hostPlatform,
vimUtils, vimUtils,
git, gitMinimal,
src, src,
version, version,
}: let }: let
@ -17,7 +16,7 @@
useFetchCargoVendor = true; useFetchCargoVendor = true;
cargoHash = "sha256-F1wh/TjYoiIbDY3J/prVF367MKk3vwM7LqOpRobOs7I="; cargoHash = "sha256-F1wh/TjYoiIbDY3J/prVF367MKk3vwM7LqOpRobOs7I=";
nativeBuildInputs = [git]; nativeBuildInputs = [gitMinimal];
}; };
in in
vimUtils.buildVimPlugin { vimUtils.buildVimPlugin {
@ -34,5 +33,5 @@ in
''; '';
# Module for reproducing issues # Module for reproducing issues
nvimSkipModule = ["repro"]; nvimSkipModules = ["repro"];
} }