From 286eea56f047ae1337d9eeb7a1ba79ac9bbb44e3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 2 Dec 2023 12:24:46 +0000 Subject: [PATCH 1/2] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/8cfef6986adfb599ba379ae53c9f5631ecd2fd9c' (2023-11-27) → 'github:NixOS/nixpkgs/e92039b55bcd58469325ded85d4f58dd5a4eaf58' (2023-11-29) --- flake.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.lock b/flake.lock index 6a7b55bf2e..83defd68a3 100644 --- a/flake.lock +++ b/flake.lock @@ -97,11 +97,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1701068326, - "narHash": "sha256-vmMceA+q6hG1yrjb+MP8T0YFDQIrW3bl45e7z24IEts=", + "lastModified": 1701253981, + "narHash": "sha256-ztaDIyZ7HrTAfEEUt9AtTDNoCYxUdSd6NrRHaYOIxtk=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "8cfef6986adfb599ba379ae53c9f5631ecd2fd9c", + "rev": "e92039b55bcd58469325ded85d4f58dd5a4eaf58", "type": "github" }, "original": { From 12a404ef42505042967fcdeab2e3be7a0b327e34 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sat, 2 Dec 2023 16:59:45 +0100 Subject: [PATCH 2/2] tests/lsp: disable fsautocomplete because it is broken See https://github.com/NixOS/nixpkgs/issues/271704 --- tests/test-sources/plugins/lsp/nvim-lsp.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test-sources/plugins/lsp/nvim-lsp.nix b/tests/test-sources/plugins/lsp/nvim-lsp.nix index 5ac17695ba..c08797032e 100644 --- a/tests/test-sources/plugins/lsp/nvim-lsp.nix +++ b/tests/test-sources/plugins/lsp/nvim-lsp.nix @@ -94,7 +94,10 @@ eslint.enable = true; elixirls.enable = true; # pkgs.fsautocomplete only supports linux platforms - fsautocomplete.enable = pkgs.stdenv.isLinux; + # fsautocomplete.enable = pkgs.stdenv.isLinux; + # As of 2023/12/02, fsautocomplete is broken + # See https://github.com/NixOS/nixpkgs/issues/271704 + fsautocomplete.enable = false; # As of 2023/10/21, futhark is broken # TODO: test and uncomment if it gets fixed # futhark-lsp.enable = true;