From 240fc3e24feb186c5d3f3ffe2d07c11bb1c29a89 Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Mon, 28 Jul 2025 17:57:26 -0400 Subject: [PATCH 1/3] ethersync: 0.6.0 -> 0.7.0 NLnet project. Signed-off-by: Ethan Carter Edwards --- pkgs/by-name/et/ethersync/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/et/ethersync/package.nix b/pkgs/by-name/et/ethersync/package.nix index 6a0ce6607327..49b88c9281e0 100644 --- a/pkgs/by-name/et/ethersync/package.nix +++ b/pkgs/by-name/et/ethersync/package.nix @@ -8,18 +8,18 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "ethersync"; - version = "0.6.0"; + version = "0.7.0"; src = fetchFromGitHub { owner = "ethersync"; repo = "ethersync"; tag = "v${finalAttrs.version}"; - hash = "sha256-dHV4+WxNdEvRZK8WNK0qp9f43Y9oSUtlXrq/mI0yWls="; + hash = "sha256-Swh8C8FMjPdIFpHOsNb3W9W7JAZGzPXHXTwwnr1gFok="; }; sourceRoot = "${finalAttrs.src.name}/daemon"; - cargoHash = "sha256-uKtJp4RD0YbOmtzbxebpYQxlBmP+5k88d+76hT4cTI8="; + cargoHash = "sha256-ZgbxaEtsaBQLl9PJbo1O2wA3OxEfPKRl3KkFvR4c97Q="; nativeInstallCheckInputs = [ versionCheckHook ]; versionCheckProgramArg = "--version"; From 04fb07600ce743915429c5b79e3dc9fff140d1b0 Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Mon, 28 Jul 2025 17:58:12 -0400 Subject: [PATCH 2/3] ethersync: add ngi team NLnet project. We should be informed when something changes ;). Signed-off-by: Ethan Carter Edwards --- pkgs/by-name/et/ethersync/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/et/ethersync/package.nix b/pkgs/by-name/et/ethersync/package.nix index 49b88c9281e0..26659ce92301 100644 --- a/pkgs/by-name/et/ethersync/package.nix +++ b/pkgs/by-name/et/ethersync/package.nix @@ -33,6 +33,7 @@ rustPlatform.buildRustPackage (finalAttrs: { downloadPage = "https://github.com/ethersync/ethersync"; changelog = "https://github.com/ethersync/ethersync/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.agpl3Plus; + teams = [ lib.teams.ngi ]; maintainers = with lib.maintainers; [ prince213 ethancedwards8 From 2ba00a0dcb8ff5006b28897cd10db35f58131db1 Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Mon, 28 Jul 2025 18:02:35 -0400 Subject: [PATCH 3/3] vimPlugins.ethersync: init at 0.7.0 Signed-off-by: Ethan Carter Edwards --- pkgs/applications/editors/vim/plugins/overrides.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index 2349fb07befb..78e4de437b10 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -133,6 +133,8 @@ # search-and-replace.nvim dependencies fd, sad, + # ethersync vim plugin + ethersync, }: self: super: let @@ -1127,6 +1129,17 @@ in ''; }; + ethersync = buildVimPlugin rec { + inherit (ethersync) + pname + version + src + meta + ; + + sourceRoot = "${src.name}/nvim-plugin"; + }; + executor-nvim = super.executor-nvim.overrideAttrs { dependencies = [ self.nui-nvim ]; };