nixf: 2.6.3 -> 2.6.4

+5 -8
+5 -8
pkgs/development/tools/language-servers/nixd/default.nix
··· 20 20 }: 21 21 22 22 let 23 + nix = nixVersions.nix_2_28; 23 24 common = rec { 24 - version = "2.6.3"; 25 + version = "2.6.4"; 25 26 26 27 src = fetchFromGitHub { 27 28 owner = "nix-community"; 28 29 repo = "nixd"; 29 30 tag = version; 30 - hash = "sha256-Gd7VFyQ/ayw0NI72sdZ1wFuXaxlIPWyE31Kl53d3zB4="; 31 + hash = "sha256-K7S626SPzlNCmRhntSKhGP1iyHJXBZEeHliX4iEwbKk="; 31 32 }; 32 33 33 34 nativeBuildInputs = [ ··· 101 102 ]; 102 103 103 104 buildInputs = [ 104 - nixVersions.nix_2_24 105 + nix 105 106 gtest 106 107 boost 107 108 ]; 108 - 109 - env.CXXFLAGS = "-include ${nixVersions.nix_2_24.dev}/include/nix/config.h"; 110 109 111 110 passthru.tests.pkg-config = testers.hasPkgConfigModules { 112 111 package = nixt; ··· 127 126 sourceRoot = "${common.src.name}/nixd"; 128 127 129 128 buildInputs = [ 130 - nixVersions.nix_2_24 129 + nix 131 130 nixf 132 131 nixt 133 132 llvmPackages.llvm ··· 136 135 ]; 137 136 138 137 nativeBuildInputs = common.nativeBuildInputs ++ [ cmake ]; 139 - 140 - env.CXXFLAGS = "-include ${nixVersions.nix_2_24.dev}/include/nix/config.h"; 141 138 142 139 # See https://github.com/nix-community/nixd/issues/519 143 140 doCheck = false;