Update flake.lock (#770)

* flake.lock: Update

Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/8cfef6986adfb599ba379ae53c9f5631ecd2fd9c' (2023-11-27)
  → 'github:NixOS/nixpkgs/e92039b55bcd58469325ded85d4f58dd5a4eaf58' (2023-11-29)

* tests/lsp: disable fsautocomplete because it is broken

See https://github.com/NixOS/nixpkgs/issues/271704

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Gaétan Lepage 2023-12-02 17:23:00 +01:00 committed by GitHub
parent 28fc85484a
commit 940f1819f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 4 deletions

6
flake.lock generated
View file

@ -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": {

View file

@ -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;