aveltras
aveltras
I'm not sure what you mean by "module target". `hie.yaml` ``` cradle: multi: - path: ./. config: { cradle: { none: } } - path: "./backend" config: cradle: bios: program:...
`bazel build //backend/package-a:exe` works fine `bazel build //backend/package-b:lib` works fine `bazel run //:hie-bios` correctly enters ghci with Main and Lib2 loaded
Replacing the `.hie-bios` content with: ``` #!/usr/bin/env bash set -euo pipefail # bazel build :hie-bios --output_groups=hie_bios --experimental_show_artifacts # cat bazel-bin/hie-bios@hie-bios >"$HIE_BIOS_OUTPUT" cat debug.txt >"$HIE_BIOS_OUTPUT" # Make warnings non-fatal echo -Wwarn...
Running `haskell-language-server --debug backend` with the `debug.txt` version: ``` haskell-language-server version: 1.2.0.0 (GHC: 8.10.4) (PATH: /nix/store/5vkn6fdmg7xnrfvxsknj70svjx4bbnyq-haskell-language-server-1.2.0.0/bin/haskell-language-server) ghcide setup tester in /home/romain/Code/skeleton. Report bugs at https://github.com/haskell/haskell-language-server/issues Step 1/4: Finding files to...
Just mentioning @aherrmann in case he could shed some light on this. That would be a follow-up from https://github.com/tweag/rules_haskell/issues/1560
@jneira it didn't work. I had to put it on hold for now and will be coming back at this (migration of a monorepo to bazel) soon hopefully. Feel free...
While packaging cinny-desktop for NixOS, I had to run the app with WEBKIT_DISABLE_COMPOSITING_MODE=1 to not get the blank window, seems to be a bug related to nvidia drivers.
You should enter nix-shell by specifying an attribute, usually "nix-shell -A shells.ghc". If you don't, nix assumes you are trying to setup an environment to build project for all platforms.
I'm not sure that would be related or not but while trying to get haskell-language-server to work on out project, i tried to get bazel not to generate symlinks in...