Skip to content

Instantly share code, notes, and snippets.

@tfausak
Last active February 18, 2023 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tfausak/381ccd98ef008ecbe975777f6ea9429b to your computer and use it in GitHub Desktop.
Save tfausak/381ccd98ef008ecbe975777f6ea9429b to your computer and use it in GitHub Desktop.
Haskell Language Server (HLS) issue #3074. https://github.com/haskell/haskell-language-server/issues/3074
{
"customizations": {
"vscode": {
"extensions": [
"haskell.haskell"
]
}
},
"dockerComposeFile": "compose.yaml",
"service": "devcontainer",
"workspaceFolder": "/workspaces/example"
}
packages:
.
flow-2.0.0.2.tar.gz
{
"services": {
"devcontainer": {
"command": "sh -c 'while sleep 1; do :; done'",
"image": "public.ecr.aws/acilearning/haskell:9.4.4-be16c1942fc0c18391314839fdb1bd2e793c4287",
"volumes": [
".:/workspaces/example"
],
"working_dir": "/workspace/example"
}
}
}
cabal-version: >= 1.10
name: example
version: 0
build-type: Simple
library
build-depends: base
default-language: Haskell2010
exposed-modules: Example
module Example where
{
"cradle": {
"cabal": null
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment