From 6a96a4723c8e3e170b6a504a01d789d2bc3eeedf Mon Sep 17 00:00:00 2001 From: "Adam C. Stephens" Date: Mon, 24 Aug 2026 09:07:19 -0400 Subject: [PATCH] neovim-unwrapped: 0.12.4 -> 0.12.5 Changelog: https://github.com/neovim/neovim/releases/tag/v0.12.5 --- pkgs/by-name/ne/neovim-unwrapped/package.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ne/neovim-unwrapped/package.nix b/pkgs/by-name/ne/neovim-unwrapped/package.nix index f0482f3ad3e3..627b6f6e227d 100644 --- a/pkgs/by-name/ne/neovim-unwrapped/package.nix +++ b/pkgs/by-name/ne/neovim-unwrapped/package.nix @@ -20,7 +20,6 @@ procps ? null, versionCheckHook, nix-update-script, - writableTmpDirAsHomeHook, wasmSupport ? false, }: @@ -104,7 +103,7 @@ stdenv.mkDerivation ( in { pname = "neovim-unwrapped"; - version = "0.12.4"; + version = "0.12.5"; __structuredAttrs = true; @@ -112,7 +111,7 @@ stdenv.mkDerivation ( owner = "neovim"; repo = "neovim"; tag = "v${finalAttrs.version}"; - hash = "sha256-KSLFsrnoEOV712cnUtA8s4EoISp+ON36jslKxSvDthQ="; + hash = "sha256-dpu2kncpm+2k+XR7qOEi4KeEy9a1E6X7kjf3s4AbcSo="; }; strictDeps = true; @@ -178,7 +177,14 @@ stdenv.mkDerivation ( # make oldtests too checkPhase = '' runHook preCheck + + # tests listen socket gets created here. not using writableTmpDirAsHomeHook + # as this path can be too long for the listen socket creation + export XDG_RUNTIME_DIR="$NIX_BUILD_TOP/tests" + mkdir -p "$XDG_RUNTIME_DIR" + make functionaltest__treesitter + runHook postCheck ''; @@ -261,7 +267,6 @@ stdenv.mkDerivation ( nativeInstallCheckInputs = [ versionCheckHook lua.pkgs.busted - writableTmpDirAsHomeHook glibcLocales # needs git for vim.pack tests as well