Mario Rodas 2024-04-22 04:20:00 +00:00 committed by Adam Stephens
parent baab40619e
commit d69a2737c4
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -19,13 +19,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "nixd"; pname = "nixd";
version = "1.2.3"; version = "2.0.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "nix-community"; owner = "nix-community";
repo = "nixd"; repo = "nixd";
rev = version; rev = version;
hash = "sha256-i/z5VnsWPWloQfdk48i+a4XaGnTMPJ6QougChkT9IWw="; hash = "sha256-K6atInl+/58nzMj4JJHds//HY7luBRmX79g+Arj6iUw=";
}; };
mesonBuildType = "release"; mesonBuildType = "release";
@ -74,7 +74,7 @@ stdenv.mkDerivation rec {
# Disable nixd regression tests, because it uses some features provided by # Disable nixd regression tests, because it uses some features provided by
# nix, and does not correctly work in the sandbox # nix, and does not correctly work in the sandbox
meson test --print-errorlogs server regression/nix-ast-dump meson test --print-errorlogs unit/libnixf/Basic unit/libnixf/Parse unit/libnixt
runHook postCheck runHook postCheck
''; '';

View file

@ -18059,7 +18059,7 @@ with pkgs;
nixd = callPackage ../development/tools/language-servers/nixd { nixd = callPackage ../development/tools/language-servers/nixd {
llvmPackages = llvmPackages_16; llvmPackages = llvmPackages_16;
nix = nixVersions.nix_2_16; nix = nixVersions.nix_2_19;
}; };
openscad-lsp = callPackage ../development/tools/language-servers/openscad-lsp { }; openscad-lsp = callPackage ../development/tools/language-servers/openscad-lsp { };