From e930d9a028f80f05a9e87bc3a1712146fcbb25f0 Mon Sep 17 00:00:00 2001 From: Montmorency Date: Sat, 4 Jan 2025 11:19:13 +0000 Subject: [PATCH] Haskell language server flag (#2022) * adding appName to flake options and trying to work around hls issue. * Revert "adding appName to flake options and trying to work around hls issue." Undoing push to master. This reverts commit 4593fc5ed14f4cb1dc54f13aee3e595b11f310df. * restoring enable-executable-dynamic to help with VisualStudio loading of hls. --- NixSupport/mkGhcCompiler.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NixSupport/mkGhcCompiler.nix b/NixSupport/mkGhcCompiler.nix index 0053f0746..94221c096 100644 --- a/NixSupport/mkGhcCompiler.nix +++ b/NixSupport/mkGhcCompiler.nix @@ -54,5 +54,7 @@ in ghcCompiler.override { manualOverrides (self: super: { websockets = super.websockets_0_13_0_0; }) + (self: super: { haskell-language-server = pkgs.haskell.lib.appendConfigureFlag super.haskell-language-server "--enable-executable-dynamic"; }) + ]; }