From b59816ae56934b8d5df6d63c5b17d1330b249303 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Fri, 30 May 2025 11:24:55 -0500 Subject: [PATCH] vimPlugins.cord-nvim: 2.2.3 -> 2.2.7 https: //github.com/vyfor/cord.nvim/compare/v2.2.3...v2.2.7 Signed-off-by: Austin Horstman --- .../vim/plugins/non-generated/cord-nvim/default.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/editors/vim/plugins/non-generated/cord-nvim/default.nix b/pkgs/applications/editors/vim/plugins/non-generated/cord-nvim/default.nix index ac7cf589c82d..76ee9a6c25db 100644 --- a/pkgs/applications/editors/vim/plugins/non-generated/cord-nvim/default.nix +++ b/pkgs/applications/editors/vim/plugins/non-generated/cord-nvim/default.nix @@ -7,26 +7,25 @@ vimUtils, }: let - version = "2.2.3"; + version = "2.2.7"; src = fetchFromGitHub { owner = "vyfor"; repo = "cord.nvim"; tag = "v${version}"; - hash = "sha256-MhUjQxwATAGxIC8ACNDFDm249GzX4Npq3S+sHoUMuos="; + hash = "sha256-SONErPOIaRltx51+GCsGtR0FDSWp/36x3lDbYLSMxXM="; }; cord-server = rustPlatform.buildRustPackage { pname = "cord"; - version = "2.2.3"; - inherit src; + inherit src version; # The version in .github/server-version.txt differs from the one in Cargo.toml postPatch = '' substituteInPlace .github/server-version.txt \ - --replace-fail "2.0.0-beta.30" "${version}" + --replace-fail "2.2.6" "${version}" ''; useFetchCargoVendor = true; - cargoHash = "sha256-hKt9d2u/tlD7bgo49O8oHDLljRvad9dEpGdFt+LH6Ec="; + cargoHash = "sha256-14u3rhpDYNKZ4YLoGp6OPeeXDo3EzGYO3yhE9BkDSC0="; # cord depends on nightly features RUSTC_BOOTSTRAP = 1;