From 762814a0052661b3c02f433ddb2f60b650f2b8d0 Mon Sep 17 00:00:00 2001 From: Montmorency Date: Wed, 18 Dec 2024 16:16:02 +0000 Subject: [PATCH] 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 a6f576a17..474cdda80 100644 --- a/NixSupport/mkGhcCompiler.nix +++ b/NixSupport/mkGhcCompiler.nix @@ -57,5 +57,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"; }) + ]; }