RichardWarfield
RichardWarfield
Thanks... it should be fixed now.
This also occurs for us with GHC 9.0.2 and GHC 9.2.2 when `haskell-language-server` is added to `shell.tools`. The `nonReinstallablePkgs` workaround is not working; we still see `installed package ghc-9.0.2 is...
It fails even with something as simple as: ``` CREATE TABLE public.test_table ( ); ALTER TABLE public.test_table OWNER TO postgres; ``` This results in the `Could not form haskell schema`...
I received the same error when trying to build using Nix; it was resolved by setting the `LIBCLANG_PATH` environment variable.
I have the following in my nix file: ```nix rustPlatform.buildRustPackage rec { ... LIBCLANG_PATH="${libclang.lib}/lib"; ... } ``` libclang is from nixpkgs.
Let me preface this by saying a big thanks to the sponsors and developers of haskell.nix, which has been a fantastically useful project for us; what I say here is...
Same error encountered, and `LANG=C stack build` did not resolve it. What *did* fix it was bumping the `gtk2hs-buildtools` version in `stack.yaml` to 0.13.8.3.
I'm still seeing this on 2.9.0.0.
So I didn't realize that this was something not on by default. Adding `multi-repl: True` to my `cabal.project` and setting `sessionLoading = multipleComponents` in the LSP settings seems to get...
I have `multi-repl: True` in `project.cabal` and have the below in my emacs config: ``` (add-hook 'lsp-after-initialize-hook '(lambda () (lsp--set-configuration '(:haskell (:sessionLoading "multipleComponents")) ))) ``` (The linked source refers to...