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 {
pname = "nixd";
version = "1.2.3";
version = "2.0.2";
src = fetchFromGitHub {
owner = "nix-community";
repo = "nixd";
rev = version;
hash = "sha256-i/z5VnsWPWloQfdk48i+a4XaGnTMPJ6QougChkT9IWw=";
hash = "sha256-K6atInl+/58nzMj4JJHds//HY7luBRmX79g+Arj6iUw=";
};
mesonBuildType = "release";
@ -74,7 +74,7 @@ stdenv.mkDerivation rec {
# Disable nixd regression tests, because it uses some features provided by
# 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
'';

View File

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