From aa890f5d1c9630fdde4c5e995c147ad2c0ac16ab Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Mon, 22 Sep 2025 15:54:12 +0200 Subject: [PATCH] nixd: 2.6.4 -> 2.7.0 Release Notes: https://github.com/nix-community/nixd/releases/tag/2.7.0 Nix-related changes adapated from commit: https://github.com/nix-community/nixd/commit/52322139bb3ea930c2504a5a4ab9232fa40284c6 --- .../tools/language-servers/nixd/default.nix | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/language-servers/nixd/default.nix b/pkgs/development/tools/language-servers/nixd/default.nix index 0813dcc24fe9..ceb3f269c904 100644 --- a/pkgs/development/tools/language-servers/nixd/default.nix +++ b/pkgs/development/tools/language-servers/nixd/default.nix @@ -20,15 +20,15 @@ }: let - nix = nixVersions.nix_2_28; + nixComponents = nixVersions.nixComponents_2_30; common = rec { - version = "2.6.4"; + version = "2.7.0"; src = fetchFromGitHub { owner = "nix-community"; repo = "nixd"; tag = version; - hash = "sha256-K7S626SPzlNCmRhntSKhGP1iyHJXBZEeHliX4iEwbKk="; + hash = "sha256-VPUX/68ysFUr1S8JW9I1rU5UcRoyZiCjL+9u2owrs6w="; }; nativeBuildInputs = [ @@ -102,7 +102,10 @@ in ]; buildInputs = [ - nix + nixComponents.nix-main + nixComponents.nix-expr + nixComponents.nix-cmd + nixComponents.nix-flake gtest boost ]; @@ -126,7 +129,10 @@ in sourceRoot = "${common.src.name}/nixd"; buildInputs = [ - nix + nixComponents.nix-main + nixComponents.nix-expr + nixComponents.nix-cmd + nixComponents.nix-flake nixf nixt llvmPackages.llvm